Class ElfinderConnectorException.Client
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.gui.elfinder.ElfinderConnectorException
de.xima.fc.gui.elfinder.ElfinderConnectorException.Client
- All Implemented Interfaces:
Serializable
- Enclosing class:
ElfinderConnectorException
Represents a client error. This is an expected error as mandated by the elfinder server API spec.
- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class ElfinderConnectorException
ElfinderConnectorException.Client, ElfinderConnectorException.Server -
Constructor Summary
ConstructorsConstructorDescriptionClient(EElfinderErrorCode errorCode, String... arguments) Creates a new expected client error with the given error code.Client(EElfinderErrorCode errorCode, String message, Throwable cause, String... arguments) Creates a new expected client error with the given error code.Client(EElfinderErrorCode errorCode, Throwable cause, String... arguments) Creates a new expected client error with the given error code.Creates a new expected client error.Client(String message, EElfinderErrorCode errorCode, String... arguments) Creates a new expected client error with the given error code.Client(String message, IllegalArgumentException cause) Creates a new expected client error.Creates a new expected client error. -
Method Summary
Methods inherited from class ElfinderConnectorException
getErrorValue, ofCode, ofCode, ofCode, ofCodeMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
Client
Creates a new expected client error.- Parameters:
message- The error message to return in the response.
-
Client
-
Client
Creates a new expected client error.- Parameters:
message- The error message to return in the response.cause- The underlying cause of the error.
-
Client
Creates a new expected client error with the given error code.- Parameters:
errorCode- The error code.arguments- Additional arguments for the error message.
-
Client
Creates a new expected client error with the given error code.- Parameters:
errorCode- The error code.cause- The underlying cause of the error.arguments- Additional arguments for the error message.
-
Client
Creates a new expected client error with the given error code.- Parameters:
errorCode- The error code.message- Internal error message.cause- The underlying cause of the error.arguments- Additional arguments for the error message.
-
Client
Creates a new expected client error with the given error code.- Parameters:
message- Initial error message.errorCode- The error code.arguments- Additional arguments for the error message.
-