Package ro.sync.ecss.extensions.api.text
Class TextPageOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ro.sync.ecss.extensions.api.text.TextPageOperationException
- All Implemented Interfaces:
Serializable
An exception thrown when something goes wrong.
- Since:
- 19
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTextPageOperationException
(String message) Constructor.TextPageOperationException
(String message, boolean error) Constructor.TextPageOperationException
(String message, Throwable cause) Constructor.TextPageOperationException
(String message, Throwable cause, boolean error) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TextPageOperationException
Constructor.- Parameters:
message
- The error message.
-
TextPageOperationException
Constructor.- Parameters:
message
- The error message.error
-true
if the message is an error message.
-
TextPageOperationException
Constructor.- Parameters:
message
- The error message.cause
- The cause of the exception.
-
TextPageOperationException
Constructor.- Parameters:
message
- The error message.cause
- The cause of the exception.error
-true
if the message is an error message.
-
-
Method Details
-
isError
public boolean isError()true
if the message is an error message.- Returns:
- Returns
true
if the message is an error message.
-