Gemfire JavaDocs
Package org.apache.geode.management
Class DependenciesNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.management.DependenciesNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class DependenciesNotFoundException extends GemFireException
Indicates that required dependencies were not found in the ClassPath.- Since:
- GemFire 7.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DependenciesNotFoundException(java.lang.String message)
Constructs a new DependenciesNotFoundException with the specified detail message.DependenciesNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs a new DependenciesNotFoundException with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
DependenciesNotFoundException
public DependenciesNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs a new DependenciesNotFoundException with the specified detail message and cause. Note that the detail message associated withcause
is not automatically incorporated in this runtime exception's detail message.- Parameters:
message
- The detail message.cause
- The cause of this exception ornull
if the cause is unknown.
-
DependenciesNotFoundException
public DependenciesNotFoundException(java.lang.String message)
Constructs a new DependenciesNotFoundException with the specified detail message.- Parameters:
message
- The detail message.
-
-