Class SaveAttachmentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.netflix.genie.common.internal.exceptions.checked.GenieCheckedException
com.netflix.genie.web.exceptions.checked.SaveAttachmentException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AttachmentTooLargeException
,IllegalAttachmentFileNameException
Exception thrown when the system tries to save a user attachment to an underlying data store and it fails for
some reason.
- Since:
- 4.0.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructor.SaveAttachmentException
(String message) Constructor.SaveAttachmentException
(String message, Throwable cause) Constructor.SaveAttachmentException
(Throwable cause) 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
-
SaveAttachmentException
public SaveAttachmentException()Constructor. -
SaveAttachmentException
Constructor.- Parameters:
message
- The detail message
-
SaveAttachmentException
Constructor.- Parameters:
message
- The detail messagecause
- The root cause of this exception
-
SaveAttachmentException
Constructor.- Parameters:
cause
- The root cause of this exception
-