Package org.datanucleus.exceptions
Class ClassNotResolvedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.datanucleus.exceptions.NucleusException
-
- org.datanucleus.exceptions.ClassNotResolvedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClassNotResolvedException extends NucleusException
A ClassNotResolvedException is thrown if an attempt is made to load a class that cannot be found by the ClassLoaderResolver.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Fields inherited from class org.datanucleus.exceptions.NucleusException
failed, fatal, nested
-
-
Constructor Summary
Constructors Constructor Description ClassNotResolvedException(java.lang.String msg)
Constructs a class-not-resolvable exception with the specified detail message and nested exception.ClassNotResolvedException(java.lang.String msg, java.lang.Throwable nested)
Constructs a class-not-resolvable exception with the specified detail message and nested exception.
-
Method Summary
-
Methods inherited from class org.datanucleus.exceptions.NucleusException
getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ClassNotResolvedException
public ClassNotResolvedException(java.lang.String msg, java.lang.Throwable nested)
Constructs a class-not-resolvable exception with the specified detail message and nested exception.- Parameters:
msg
- the exception messagenested
- the nested exception(s).
-
ClassNotResolvedException
public ClassNotResolvedException(java.lang.String msg)
Constructs a class-not-resolvable exception with the specified detail message and nested exception.- Parameters:
msg
- the exception message
-
-