Class EnhancerFatalError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.jdo.api.persistence.enhancer.EnhancerFatalError
-
- All Implemented Interfaces:
Serializable
public class EnhancerFatalError extends Exception
Thrown to indicate that the class-file enhancer failed to perform an operation due to a serious error. The enhancer is not guaranteed to be in a consistent state anymore.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EnhancerFatalError()Constructs anEnhancerFatalErrorwith no detail message.EnhancerFatalError(String msg)Constructs anEnhancerFatalErrorwith the specified detail message.EnhancerFatalError(String msg, Throwable nested)Constructs anEnhancerFatalErrorwith the specified detail message and an optional nested exception.EnhancerFatalError(Throwable nested)Constructs anEnhancerFatalErrorwith 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
-
EnhancerFatalError
public EnhancerFatalError()
Constructs anEnhancerFatalErrorwith no detail message.
-
EnhancerFatalError
public EnhancerFatalError(String msg)
Constructs anEnhancerFatalErrorwith the specified detail message.
-
EnhancerFatalError
public EnhancerFatalError(Throwable nested)
Constructs anEnhancerFatalErrorwith an optional nested exception.
-
-