Class EnhancerUserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.jdo.api.persistence.enhancer.EnhancerUserException
-
- All Implemented Interfaces:
Serializable
public class EnhancerUserException extends Exception
Thrown to indicate that the class-file enhancer failed to perform an operation due to an error. The enhancer is guaranteed to remain in a consistent state.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EnhancerUserException()Constructs anEnhancerUserExceptionwith no detail message.EnhancerUserException(String msg)Constructs anEnhancerUserExceptionwith the specified detail message.EnhancerUserException(String msg, Throwable nested)Constructs anEnhancerUserExceptionwith the specified detail message and an optional nested exception.EnhancerUserException(Throwable nested)Constructs anEnhancerUserExceptionwith an optional nested exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
nested
public final Throwable nested
An optional nested exception.
-
-
Constructor Detail
-
EnhancerUserException
public EnhancerUserException()
Constructs anEnhancerUserExceptionwith no detail message.
-
EnhancerUserException
public EnhancerUserException(String msg)
Constructs anEnhancerUserExceptionwith the specified detail message.
-
EnhancerUserException
public EnhancerUserException(Throwable nested)
Constructs anEnhancerUserExceptionwith an optional nested exception.
-
-