- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.pervasive.datarush.exceptions.DRException
-
- com.pervasive.datarush.analytics.pmml.InvalidPMMLException
-
- All Implemented Interfaces:
Serializable
public class InvalidPMMLException extends DRException
Thrown to indicate that either:- the thrower attempted to parse a malformed or non-compliant PMML document, including one that used a different version of the PMML standard, or
- the thrower was required to build a PMML element that was non-compliant (e.g. missing required attributes).
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidPMMLException()Default constructorInvalidPMMLException(String message)Constructs aInvalidPMMLExceptionwith the specified message.InvalidPMMLException(String message, Throwable cause)Constructs aInvalidPMMLExceptionwith the specified message and cause.InvalidPMMLException(Throwable cause)Constructs aInvalidPMMLExceptionwith the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidPMMLException
public InvalidPMMLException()
Default constructor
-
InvalidPMMLException
public InvalidPMMLException(String message)
Constructs aInvalidPMMLExceptionwith the specified message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
InvalidPMMLException
public InvalidPMMLException(String message, Throwable cause)
Constructs aInvalidPMMLExceptionwith the specified message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
InvalidPMMLException
public InvalidPMMLException(Throwable cause)
Constructs aInvalidPMMLExceptionwith the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-