issrg.utils.repository
Class RepositoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
issrg.utils.EmbeddedException
issrg.utils.repository.RepositoryException
- All Implemented Interfaces:
- java.io.Serializable
public class RepositoryException
- extends EmbeddedException
This exception is used to notify of errors in AttributeRepository
functioning.
- See Also:
- Serialized Form
Constructor Summary |
RepositoryException()
The default constructor builds an exception with no explanation
message and no embedded exception. |
RepositoryException(java.lang.String msg)
This constructor builds an exception with a message but no
embedded exception. |
RepositoryException(java.lang.String msg,
java.lang.Throwable th)
This constructor builds an exception with a message and an
embedded exception to be returned by getEmbedded method. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
RepositoryException
public RepositoryException()
- The default constructor builds an exception with no explanation
message and no embedded exception.
RepositoryException
public RepositoryException(java.lang.String msg)
- This constructor builds an exception with a message but no
embedded exception.
- Parameters:
msg
- is the String message explaining the error; can be null
RepositoryException
public RepositoryException(java.lang.String msg,
java.lang.Throwable th)
- This constructor builds an exception with a message and an
embedded exception to be returned by getEmbedded method.
- Parameters:
msg
- is the String explanation of the error; can be nullth
- is the Throwable object to be believed the cause of
the error; can be null, if there is no embedded exception- See Also:
EmbeddedException.getEmbedded()