You are currently viewing a snapshot of www.mozilla.org taken on April 21, 2008. Most of this content is highly out of date (some pages haven't been updated since the project began in 1998) and exists for historical purposes only. If there are any pages on this archive site that you think should be added back to www.mozilla.org, please file a bug.




org.mozilla.util
Class RangeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.mozilla.util.RangeException

public class RangeException
extends java.lang.RuntimeException

An RangeException is an exception that is thrown when a value is outside of its acceptable range.

See Also:
Serialized Form

Constructor Summary
RangeException()
          Constructs an exception with no error string.
RangeException(java.lang.String message)
          Constructs an exception with an error string.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RangeException

public RangeException()
Constructs an exception with no error string.

RangeException

public RangeException(java.lang.String message)
Constructs an exception with an error string.
Parameters:
message - A message that will hopefully tell someone about the cause of this exception.