Class OutputWriteFailedException
Object
Throwable
Exception
AnchorCheckedException
AnchorFriendlyCheckedException
OutputWriteFailedException
- All Implemented Interfaces:
Serializable
,HasFriendlyErrorMessage
When an output could not be successfully written to the file-system.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionOutputWriteFailedException
(String message) Creates with a message only.OutputWriteFailedException
(String message, AnchorCombinableException cause) Creates with a message and a cause that can be combined with others in summary form.OutputWriteFailedException
(String message, HasFriendlyErrorMessage cause) Creates with a message and a cause that provides a friendly error message.Creates with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OutputWriteFailedException
Creates with a message only.- Parameters:
message
- the message.
-
OutputWriteFailedException
Creates with a cause only.- Parameters:
cause
- the cause.
-
OutputWriteFailedException
Creates with a message and a cause that provides a friendly error message.- Parameters:
message
- the message (which is prefixed together with the friendly error message).cause
- a cause that provides a friendly error message.
-
OutputWriteFailedException
Creates with a message and a cause that can be combined with others in summary form.- Parameters:
message
- the message (which is prefixed together with the combiend error message).cause
- a cause that provides a summary, when combined with others.
-