Package org.apache.geode.lang
Class AttachAPINotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.lang.AttachAPINotFoundException
- All Implemented Interfaces:
Serializable
The AttachAPINotFoundException class is a RuntimeException indicating that the JDK tools.jar has
not been properly set on the user's classpath
- Since:
- GemFire 7.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance of the AttachAPINotFoundException class.AttachAPINotFoundException(String message) Constructs an instance of the AttachAPINotFoundException class with a description of the problem.AttachAPINotFoundException(String message, Throwable cause) Constructs an instance of the AttachAPINotFoundException class with a reference to the underlying Exception causing this Exception to be thrown in addition to a description of the problem.Constructs an instance of the AttachAPINotFoundException class with a reference to the underlying Exception causing this Exception to be thrown. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AttachAPINotFoundException
public AttachAPINotFoundException()Constructs an instance of the AttachAPINotFoundException class. -
AttachAPINotFoundException
Constructs an instance of the AttachAPINotFoundException class with a description of the problem.- Parameters:
message- a String describing the nature of the Exception and why it was thrown.
-
AttachAPINotFoundException
Constructs an instance of the AttachAPINotFoundException class with a reference to the underlying Exception causing this Exception to be thrown.- Parameters:
cause- a Throwable indicating the reason this Exception was thrown.
-
AttachAPINotFoundException
Constructs an instance of the AttachAPINotFoundException class with a reference to the underlying Exception causing this Exception to be thrown in addition to a description of the problem.- Parameters:
message- a String describing the nature of the Exception and why it was thrown.cause- a Throwable indicating the reason this Exception was thrown.
-