Class NotAllowedObjectException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.pgcodekeeper.core.model.graph.NotAllowedObjectException
- All Implemented Interfaces:
Serializable
Exception indicating that a
DbObjType object
is not allowed in the current context.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new NotAllowedObjectException with no detail message.NotAllowedObjectException(String message) Constructs a new NotAllowedObjectException with the specified detail message.NotAllowedObjectException(String message, Throwable cause) Constructs a new NotAllowedObjectException with the specified detail message and cause.Constructs a new NotAllowedObjectException 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
-
NotAllowedObjectException
public NotAllowedObjectException()Constructs a new NotAllowedObjectException with no detail message. -
NotAllowedObjectException
Constructs a new NotAllowedObjectException with the specified detail message.- Parameters:
message- the detail message describing the restriction
-
NotAllowedObjectException
Constructs a new NotAllowedObjectException with the specified cause.- Parameters:
cause- the underlying cause of this exception
-
NotAllowedObjectException
Constructs a new NotAllowedObjectException with the specified detail message and cause.- Parameters:
message- the detail message describing the restrictioncause- the underlying cause of this exception
-