- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.lang.RuntimeException
 - 
- org.datanucleus.exceptions.NucleusException
 - 
- org.datanucleus.exceptions.ClassNotResolvedException
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 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
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ClassNotResolvedException(String msg)Constructs a class-not-resolvable exception with the specified detail message and nested exception.ClassNotResolvedException(String msg, 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 
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ClassNotResolvedException
public ClassNotResolvedException(String msg, 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(String msg)
Constructs a class-not-resolvable exception with the specified detail message and nested exception.- Parameters:
 msg- the exception message
 
 - 
 
 -