Package org.pgcodekeeper.core.exception
Class PgCodeKeeperException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.pgcodekeeper.core.exception.PgCodeKeeperException
- All Implemented Interfaces:
Serializable
Exception class for pgCodeKeeper specific exceptions.
This exception should be used for all application-specific error conditions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new pgCodeKeeper exception with no detail message.PgCodeKeeperException(String message) Constructs a new pgCodeKeeper exception with the specified detail message.PgCodeKeeperException(String message, Throwable cause) Constructs a new pgCodeKeeper exception with the specified detail message and cause.PgCodeKeeperException(Throwable cause) Constructs a new pgCodeKeeper exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PgCodeKeeperException
public PgCodeKeeperException()Constructs a new pgCodeKeeper exception with no detail message. -
PgCodeKeeperException
Constructs a new pgCodeKeeper exception with the specified detail message.- Parameters:
message- the detail message
-
PgCodeKeeperException
Constructs a new pgCodeKeeper exception with the specified cause.- Parameters:
cause- the cause
-
PgCodeKeeperException
Constructs a new pgCodeKeeper exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-