Class InvalidPMMLException

All Implemented Interfaces:
Serializable

public class InvalidPMMLException extends DRException
Thrown to indicate that either:
  1. the thrower attempted to parse a malformed or non-compliant PMML document, including one that used a different version of the PMML standard, or
  2. the thrower was required to build a PMML element that was non-compliant (e.g. missing required attributes).
See Also:
  • Constructor Details

    • InvalidPMMLException

      public InvalidPMMLException()
      Default constructor
    • InvalidPMMLException

      public InvalidPMMLException(String message)
      Constructs a InvalidPMMLException with the specified message.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
    • InvalidPMMLException

      public InvalidPMMLException(String message, Throwable cause)
      Constructs a InvalidPMMLException with the specified message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      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.)
    • InvalidPMMLException

      public InvalidPMMLException(Throwable cause)
      Constructs a InvalidPMMLException with the specified cause.
      Parameters:
      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.)