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
public class JDOEnhanceException extends JDOException
Exception thrown when an error occurs during enhancement.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDOEnhanceException()Constructs a newJDOEnhanceExceptionwithout a detail message.JDOEnhanceException(String msg)Constructs a newJDOEnhanceExceptionwith the specified detail message.JDOEnhanceException(String msg, Throwable nested)Constructs a newJDOEnhanceExceptionwith the specified detail message and nestedThrowables.JDOEnhanceException(String msg, Throwable[] nested)Constructs a newJDOEnhanceExceptionwith the specified detail message and nestedThrowables.
-
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
-
-
-
-
Constructor Detail
-
JDOEnhanceException
public JDOEnhanceException()
Constructs a newJDOEnhanceExceptionwithout a detail message.
-
JDOEnhanceException
public JDOEnhanceException(String msg)
Constructs a newJDOEnhanceExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOEnhanceException
public JDOEnhanceException(String msg, Throwable[] nested)
Constructs a newJDOEnhanceExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
-