Class GenieCheckedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.netflix.genie.common.internal.exceptions.checked.GenieCheckedException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AgentLaunchException
,GenieConversionException
,GenieJobResolutionException
,IdAlreadyExistsException
,JobArchiveException
,JobDirectoryManifestNotFoundException
,JobNotArchivedException
,JobNotFoundException
,NotFoundException
,PreconditionFailedException
,ResourceSelectionException
,SaveAttachmentException
,ScriptExecutionException
,ScriptLoadingException
,ScriptNotConfiguredException
Base class for Genie checked exceptions.
- Since:
- 4.0.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.GenieCheckedException
(String message) Constructor.GenieCheckedException
(String message, Throwable cause) Constructor.GenieCheckedException
(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
-
GenieCheckedException
public GenieCheckedException()Constructor. -
GenieCheckedException
Constructor.- Parameters:
message
- The detail message
-
GenieCheckedException
Constructor.- Parameters:
message
- The detail messagecause
- The root cause of this exception
-
GenieCheckedException
Constructor.- Parameters:
cause
- The root cause of this exception
-