Class OutputWriteFailedException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
org.anchoranalysis.io.output.error.OutputWriteFailedException
- All Implemented Interfaces:
Serializable,HasFriendlyErrorMessage
public class OutputWriteFailedException extends AnchorFriendlyCheckedException
When an output could not be successfully written to the file-system.
- Author:
- Owen Feehan
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description OutputWriteFailedException(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.OutputWriteFailedException(Throwable cause)Creates with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTraceMethods 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.
-