Class JDOMetaDataFatalError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.sun.jdo.api.persistence.enhancer.meta.JDOMetaDataFatalError
-
- All Implemented Interfaces:
Serializable
public class JDOMetaDataFatalError extends RuntimeException
Thrown to indicate that an access to JDO meta-data failed due to a serious error, which might have left the meta-data component in an inconsistent state.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDOMetaDataFatalError()Constructs anJDOMetaDataFatalErrorwith no detail message.JDOMetaDataFatalError(String msg)Constructs anJDOMetaDataFatalErrorwith the specified detail message.JDOMetaDataFatalError(String msg, Throwable nested)Constructs anJDOMetaDataFatalErrorwith the specified detail message and an optional nested exception.JDOMetaDataFatalError(Throwable nested)Constructs anJDOMetaDataFatalErrorwith 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
-
JDOMetaDataFatalError
public JDOMetaDataFatalError()
Constructs anJDOMetaDataFatalErrorwith no detail message.
-
JDOMetaDataFatalError
public JDOMetaDataFatalError(String msg)
Constructs anJDOMetaDataFatalErrorwith the specified detail message.
-
JDOMetaDataFatalError
public JDOMetaDataFatalError(Throwable nested)
Constructs anJDOMetaDataFatalErrorwith an optional nested exception.
-
-