Package org.pentaho.di.core.exception
Class KettleMissingPluginsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.pentaho.di.core.exception.KettleException
-
- org.pentaho.di.core.exception.KettleMissingPluginsException
-
- All Implemented Interfaces:
Serializable
public class KettleMissingPluginsException extends KettleException
This Exception is throws when an error occurs loading plugins.- Since:
- 9-12-2004
- Author:
- Matt
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
KettleMissingPluginsException.PluginDetails
-
Constructor Summary
Constructors Constructor Description KettleMissingPluginsException(String message)
Constructs a new throwable with the specified detail message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addMissingPluginDetails(Class<? extends PluginTypeInterface> pluginTypeClass, String pluginId)
Add a missing plugin id for a given plugin type.String
getMessage()
get the messages back to it's origin cause.List<KettleMissingPluginsException.PluginDetails>
getMissingPluginDetailsList()
String
getPluginsMessage()
-
Methods inherited from class org.pentaho.di.core.exception.KettleException
getSuperMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
KettleMissingPluginsException
public KettleMissingPluginsException(String message)
Constructs a new throwable with the specified detail message.- Parameters:
message
- - the detail message. The detail message is saved for later retrieval by the getMessage() method.
-
-
Method Detail
-
addMissingPluginDetails
public void addMissingPluginDetails(Class<? extends PluginTypeInterface> pluginTypeClass, String pluginId)
Add a missing plugin id for a given plugin type.- Parameters:
pluginTypeClass
- The class of the plugin type (ex. StepPluginType.class)pluginId
- The id of the missing plugin
-
getMissingPluginDetailsList
public List<KettleMissingPluginsException.PluginDetails> getMissingPluginDetailsList()
-
getMessage
public String getMessage()
Description copied from class:KettleException
get the messages back to it's origin cause.- Overrides:
getMessage
in classKettleException
-
getPluginsMessage
public String getPluginsMessage()
-
-