Package javax.jdo
Class JDOEnhanceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.jdo.JDOException
javax.jdo.JDOEnhanceException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during enhancement.
- Since:
- 3.0
- See Also:
-
Field Summary
FieldsFields inherited from class javax.jdo.JDOException
failed, nested
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newJDOEnhanceException
without a detail message.Constructs a newJDOEnhanceException
with the specified detail message.JDOEnhanceException
(String msg, Throwable nested) Constructs a newJDOEnhanceException
with the specified detail message and nestedThrowable
s.JDOEnhanceException
(String msg, Throwable[] nested) Constructs a newJDOEnhanceException
with the specified detail message and nestedThrowable
s. -
Method Summary
Methods inherited from class javax.jdo.JDOException
getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, setStackTrace
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
JDOEnhanceException
public JDOEnhanceException()Constructs a newJDOEnhanceException
without a detail message. -
JDOEnhanceException
Constructs a newJDOEnhanceException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JDOEnhanceException
Constructs a newJDOEnhanceException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.
-
JDOEnhanceException
Constructs a newJDOEnhanceException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.
-