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$ $Date: $
- Author:
- Keith Visco
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newResolverException
with no message or nested exception.ResolverException
(String message) Creates a newResolverException
with the given message.ResolverException
(String message, int errorCode) Deprecated.ResolverException
(String message, Throwable exception) Creates a newResolverException
with the given message and nested exception.ResolverException
(String message, Throwable exception, int errorCode) Deprecated.ResolverException
(Throwable exception) Creates a newResolverException
with the given nested exception. -
Method Summary
Methods inherited from class org.exolab.castor.xml.XMLException
getErrorCode, setErrorCode, setLocation, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
ResolverException
public ResolverException()Creates a newResolverException
with no message or nested exception. -
ResolverException
Creates a newResolverException
with the given message.- Parameters:
message
- the message for this exception.
-
ResolverException
Creates a newResolverException
with the given nested exception.- Parameters:
exception
- the nested exception
-
ResolverException
Deprecated.Creates a newResolverException
with the given message and error code.- Parameters:
message
- the message for this exception.errorCode
- the error code for this exception.
-
ResolverException
Creates a newResolverException
with the given message and nested exception.- Parameters:
message
- the message for this exception.exception
- the nested exception.
-
ResolverException
Deprecated.Creates a newResolverException
with the given message, nested exception, and error code.- Parameters:
message
- the message for this exception.exception
- the nested exception.errorCode
- the error code for this exception.
-