Package org.nuiton.topia.persistence
Class TopiaException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.nuiton.topia.persistence.TopiaException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SchemaValidationTopiaException,TopiaMigrationServiceException,TopiaMisconfigurationException,TopiaNotFoundException,TopiaQueryException,TopiaVetoException
Main exception for any ToPIA exception
Created: 23 déc. 2005 23:03:36
Since version 3.0, this exception is now a RuntimeException has it represents only technical issues.
- Author:
- Benjamin Poussin - poussin@codelutin.com
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.TopiaException(String message) Constructor withmessage.TopiaException(String message, Throwable cause) Constructor for a wrapped TopiaException over acausewith amessage.TopiaException(Throwable cause) Constructor for a wrapped TopiaException over acause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TopiaException
public TopiaException()Default constructor. -
TopiaException
Constructor withmessage.- Parameters:
message- exception message
-
TopiaException
Constructor for a wrapped TopiaException over acausewith amessage.- Parameters:
message- exception messagecause- exception cause
-
TopiaException
Constructor for a wrapped TopiaException over acause.- Parameters:
cause- exception cause
-