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 |
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.