net.aerith.misao.util
Class DuplicatedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--net.aerith.misao.util.DuplicatedException

public class DuplicatedException
extends java.lang.Exception

The DuplicatedException is an exception thrown if someting is duplicated.

See Also:
Serialized Form

Field Summary
protected  java.lang.Object duplicated
          The duplicated object.
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
DuplicatedException(java.lang.Object object)
          Constructs a DuplicatedException.
 
Method Summary
 java.lang.Object getDuplicatedObject()
          Gets the duplicated object.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

duplicated

protected java.lang.Object duplicated
The duplicated object.
Constructor Detail

DuplicatedException

public DuplicatedException(java.lang.Object object)
Constructs a DuplicatedException.
Parameters:
object - the duplicated object.
Method Detail

getDuplicatedObject

public java.lang.Object getDuplicatedObject()
Gets the duplicated object.
Returns:
the duplicated object.