net.sf.japaki.basic
Class OutOfRangeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IllegalArgumentException
                  extended by net.sf.japaki.basic.OutOfRangeException
All Implemented Interfaces:
Serializable

public class OutOfRangeException
extends IllegalArgumentException

Thrown to indicate that an argument has a value outside of the valid range.

See Also:
Serialized Form

Constructor Summary
OutOfRangeException()
          Constructs a new exception without detail message.
OutOfRangeException(String s)
          Constructs a new exception with the specified detail message.
OutOfRangeException(String message, Throwable cause)
          Constructs a new exception with the specified detail message and cause.
OutOfRangeException(Throwable cause)
          Constructs a new exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OutOfRangeException

public OutOfRangeException()
Constructs a new exception without detail message.


OutOfRangeException

public OutOfRangeException(String s)
Constructs a new exception with the specified detail message. See Throwable for details.


OutOfRangeException

public OutOfRangeException(String message,
                           Throwable cause)
Constructs a new exception with the specified detail message and cause. See Throwable for details.


OutOfRangeException

public OutOfRangeException(Throwable cause)
Constructs a new exception with the specified cause. See Throwable for details.