Class GenieRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.netflix.genie.common.internal.exceptions.unchecked.GenieRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
GenieAgentRejectedException
,GenieApplicationNotFoundException
,GenieClusterNotFoundException
,GenieCommandNotFoundException
,GenieIdAlreadyExistsException
,GenieInvalidStatusException
,GenieJobAlreadyClaimedException
,GenieJobNotFoundException
,GenieJobResolutionRuntimeException
,GenieJobSpecificationNotFoundException
public class GenieRuntimeException extends java.lang.RuntimeException
Base class for Genie runtime exceptions.- Since:
- 4.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GenieRuntimeException()
Constructor.GenieRuntimeException(java.lang.String message)
Constructor.GenieRuntimeException(java.lang.String message, java.lang.Throwable cause)
Constructor.GenieRuntimeException(java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
GenieRuntimeException
public GenieRuntimeException()
Constructor.
-
GenieRuntimeException
public GenieRuntimeException(java.lang.String message)
Constructor.- Parameters:
message
- The detail message
-
GenieRuntimeException
public GenieRuntimeException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- The detail messagecause
- The root cause of this exception
-
GenieRuntimeException
public GenieRuntimeException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- The root cause of this exception
-
-