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
public class UnsupportedPMMLException extends DRException
Thrown to indicate that a PMML element was encountered that is not currently supported by our predictor.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedPMMLException()
Constructs aUnsupportedPMMLException
without specifying a message.UnsupportedPMMLException(String message)
Constructs aUnsupportedPMMLException
with the specified message.UnsupportedPMMLException(String message, Throwable cause)
Constructs aUnsupportedPMMLException
with the specified message and cause.UnsupportedPMMLException(Throwable cause)
Constructs aUnsupportedPMMLException
with 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
-
UnsupportedPMMLException
public UnsupportedPMMLException()
Constructs aUnsupportedPMMLException
without specifying a message.
-
UnsupportedPMMLException
public UnsupportedPMMLException(String message)
Constructs aUnsupportedPMMLException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
UnsupportedPMMLException
public UnsupportedPMMLException(String message, Throwable cause)
Constructs aUnsupportedPMMLException
with 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
public UnsupportedPMMLException(Throwable cause)
Constructs aUnsupportedPMMLException
with 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.)
-
-