Class InvalidXsdException

All Implemented Interfaces:
Serializable

public class InvalidXsdException extends ImportException
Thrown when an XML schema file being imported is found to be invalid.
See Also:
  • Constructor Details

    • InvalidXsdException

      public InvalidXsdException(ImportDiagnostic[] diagnostics_, ErrorCode errorCode_)
      Creates an instance with the given diagnostics and error code.
      Parameters:
      diagnostics_ - the import diagnostics generated when attempting to import the XML schema file
      errorCode_ - the error code associated with the exception
    • InvalidXsdException

      public InvalidXsdException(ImportDiagnostic[] diagnostics_, ErrorCode errorCode_, String... errorCodeArguments_)
      Creates an instance with the given diagnostics, error code and error code arguments.
      Parameters:
      diagnostics_ - the import diagnostics generated when attempting to import the XML schema file
      errorCode_ - the error code associated with the exception
      errorCodeArguments_ - the arguments that serve as text replacements in the error message
    • InvalidXsdException

      public InvalidXsdException(ImportDiagnostic[] diagnostics_, ErrorCode errorCode_, String[] errorCodeArguments_, Throwable cause_)
      Creates an instance with the given diagnostics, error code, error code arguments and cause
      Parameters:
      diagnostics_ - the import diagnostics generated when attempting to import the XML schema file
      errorCode_ - the error code associated with the exception
      errorCodeArguments_ - the arguments that serve as text replacements in the error message
      cause_ - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) *