Class ResolverException

All Implemented Interfaces:
Serializable

public class ResolverException extends XMLException
The exception class thrown by the ClassDescriptorResolver
Version:
$Revision: 8870 $ $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)
      Deprecated.
      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)
      Deprecated.
      Creates a new ResolverException 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.