Module datarush.analytics
Class UnsupportedPMMLException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pervasive.datarush.exceptions.DRException
com.pervasive.datarush.analytics.pmml.UnsupportedPMMLException
- All Implemented Interfaces:
Serializable
Thrown to indicate that a PMML element was encountered that is not currently supported
by our predictor.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aUnsupportedPMMLExceptionwithout specifying a message.UnsupportedPMMLException(String message) Constructs aUnsupportedPMMLExceptionwith the specified message.UnsupportedPMMLException(String message, Throwable cause) Constructs aUnsupportedPMMLExceptionwith the specified message and cause.Constructs aUnsupportedPMMLExceptionwith 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 Details
-
UnsupportedPMMLException
public UnsupportedPMMLException()Constructs aUnsupportedPMMLExceptionwithout specifying a message. -
UnsupportedPMMLException
Constructs aUnsupportedPMMLExceptionwith the specified message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).
-
UnsupportedPMMLException
Constructs aUnsupportedPMMLExceptionwith 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.)
-
UnsupportedPMMLException
Constructs aUnsupportedPMMLExceptionwith 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.)
-