public class KettlePluginLoaderException extends KettleException
Modifier and Type | Field and Description |
---|---|
static long |
serialVersionUID |
Constructor and Description |
---|
KettlePluginLoaderException(String pluginId)
Constructs a new throwable with null as its detail message.
|
KettlePluginLoaderException(String pluginId,
String message)
Constructs a new throwable with the specified detail message.
|
KettlePluginLoaderException(String pluginId,
String message,
Throwable cause)
Constructs a new throwable with the specified detail message and cause.
|
KettlePluginLoaderException(String pluginId,
Throwable cause)
Constructs a new throwable with the specified cause and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of cause).
|
Modifier and Type | Method and Description |
---|---|
String |
getPluginId() |
void |
setPluginId(String pluginId) |
getMessage, getSuperMessage
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public static final long serialVersionUID
public KettlePluginLoaderException(String pluginId)
pluginId
- The missing plugin idpublic KettlePluginLoaderException(String pluginId, String message)
pluginId
- The missing plugin idmessage
- - the detail message. The detail message is saved for later retrieval by the getMessage() method.public KettlePluginLoaderException(String pluginId, Throwable cause)
pluginId
- The missing plugin idcause
- the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)public KettlePluginLoaderException(String pluginId, String message, Throwable cause)
pluginId
- The missing plugin idmessage
- the detail message (which is saved for later retrieval by the getMessage() method).cause
- the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)