Class ResolverException

All Implemented Interfaces:
Serializable

public class ResolverException extends XMLException
The exception class thrown by the ClassDescriptorResolver
Version:
$Revision: 6905 $ $Date: $
Author:
Keith Visco
See Also:
  • Constructor Details

    • ResolverException

      public ResolverException()
      Creates a new ResolverException with no message or nested Exception.
    • ResolverException

      public ResolverException(String message)
      Creates a new ResolverException with the given message.
      Parameters:
      message - the message for this Exception.
    • ResolverException

      public ResolverException(Throwable exception)
      Creates a new ResolverException with the given nested exception.
      Parameters:
      exception - the nested exception
    • ResolverException

      public ResolverException(String message, int errorCode)
      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

      public ResolverException(String message, Throwable exception)
      Creates a new ResolverException with the given message and nested Exception.
      Parameters:
      message - the message for this Exception.
      exception - the nested Exception.
    • ResolverException

      public ResolverException(String message, Throwable exception, int errorCode)
      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.