com.f1j.util
Class DeletedObjectException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--java.lang.IllegalStateException
                          |
                          +--com.f1j.util.DeletedObjectException

public class DeletedObjectException
extends java.lang.IllegalStateException

The operation cannot be performed because the object has been deleted.

Since:
11.0
See Also:
Serialized Form

Field Summary
static com.f1j.util.DeletedObjectException.EType eGeneric
          A nonspecific DeletedObjectException.
 
Constructor Summary
DeletedObjectException()
          Creates a generic DeletedObjectException.
DeletedObjectException(com.f1j.util.DeletedObjectException.EType eType)
          Creates a DeletedObjectException of the specified type.
 
Method Summary
 java.lang.String getLocalizedMessage()
          Returns the localized message associated with this exception.
 java.lang.String getMessage()
          Returns the type of message associated with this type of exception.
 com.f1j.util.DeletedObjectException.EType getType()
          Returns the type of DeletedObjectException.
 

Field Detail

eGeneric

public static final com.f1j.util.DeletedObjectException.EType eGeneric
A nonspecific DeletedObjectException.
Since:
11.0
Constructor Detail

DeletedObjectException

public DeletedObjectException()
Creates a generic DeletedObjectException.
Since:
11.0

DeletedObjectException

public DeletedObjectException(com.f1j.util.DeletedObjectException.EType eType)
Creates a DeletedObjectException of the specified type.
Parameters:
eType - The type of DeletedObjectException.
Since:
11.0
Method Detail

getType

public com.f1j.util.DeletedObjectException.EType getType()
Returns the type of DeletedObjectException.
Returns:
The type of DeletedObjectException.
Since:
11.0
See Also:
F1Exception.EType

getMessage

public java.lang.String getMessage()
Returns the type of message associated with this type of exception.
Returns:
The message for this exception.
Overrides:
getMessage in class java.lang.Throwable
Since:
11.0

getLocalizedMessage

public java.lang.String getLocalizedMessage()
Returns the localized message associated with this exception.
Returns:
The localized message.
Overrides:
getLocalizedMessage in class java.lang.Throwable
Since:
11.0