net.sf.japaki.basic
Class DuplicateKeyException

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.DuplicateKeyException
All Implemented Interfaces:
Serializable

public class DuplicateKeyException
extends IllegalArgumentException

Thrown to indicate that a key cannot be used again.

See Also:
Serialized Form

Constructor Summary
DuplicateKeyException()
          Constructs a new exception without detail message.
DuplicateKeyException(String s)
          Constructs a new exception with the specified detail message.
DuplicateKeyException(String message, Throwable cause)
          Constructs a new exception with the specified detail message and cause.
DuplicateKeyException(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

DuplicateKeyException

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


DuplicateKeyException

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


DuplicateKeyException

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


DuplicateKeyException

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