Package org.pgcodekeeper.core
Class PgCodekeeperException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.pgcodekeeper.core.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
-