Package com.mindsdb.exception
Class ForbiddenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.mindsdb.exception.ForbiddenException
- All Implemented Interfaces:
Serializable
Exception thrown when a forbidden action is attempted.
This class extends
Exception
to provide a specific
type of error indicating that the requested operation is not allowed.- See Also:
-
Constructor Summary
ConstructorDescriptionForbiddenException
(String message) Constructs a new ForbiddenException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ForbiddenException
Constructs a new ForbiddenException with the specified detail message.- Parameters:
message
- the detail message, which is saved for later retrieval by theThrowable.getMessage()
method
-