Package org.exolab.castor.xml
Class ResolverException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.exolab.castor.core.exceptions.CastorException
org.exolab.castor.xml.XMLException
org.exolab.castor.xml.ResolverException
- All Implemented Interfaces:
Serializable
The exception class thrown by the ClassDescriptorResolver
- Version:
- $Revision: 6905 $ $Date: $
- Author:
- Keith Visco
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new ResolverException with no message or nested Exception.ResolverException
(String message) Creates a new ResolverException with the given message.ResolverException
(String message, int errorCode) Creates a new ResolverException with the given message and error code.ResolverException
(String message, Throwable exception) Creates a new ResolverException with the given message and nested Exception.ResolverException
(String message, Throwable exception, int errorCode) Creates a new ResolverException with the given message, nested Exception, and errorCode.ResolverException
(Throwable exception) Creates a new ResolverException with the given nested exception. -
Method Summary
Methods inherited from class org.exolab.castor.xml.XMLException
getErrorCode, setErrorCode, setLocation, toString
Methods inherited from class org.exolab.castor.core.exceptions.CastorException
getCause, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, setStackTrace
-
Constructor Details
-
ResolverException
public ResolverException()Creates a new ResolverException with no message or nested Exception. -
ResolverException
Creates a new ResolverException with the given message.- Parameters:
message
- the message for this Exception.
-
ResolverException
Creates a new ResolverException with the given nested exception.- Parameters:
exception
- the nested exception
-
ResolverException
Creates a new ResolverException with the given message and error code.- Parameters:
message
- the message for this Exception.errorCode
- the error code for this Exception.
-
ResolverException
Creates a new ResolverException with the given message and nested Exception.- Parameters:
message
- the message for this Exception.exception
- the nested Exception.
-
ResolverException
Creates a new ResolverException with the given message, nested Exception, and errorCode.- Parameters:
message
- the message for this Exception.exception
- the nested Exception.errorCode
- the error code for this Exception.
-