Package eu.tneitzel.rmg.exceptions
Class MalformedPluginException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- eu.tneitzel.rmg.exceptions.MalformedPluginException
-
- All Implemented Interfaces:
Serializable
public class MalformedPluginException extends Exception
MalformedPluginExceptions are thrown then an rmg plugin was specified on the command line that does not satisfy the plugin requirements. Usually, if that happens, then the Manifest of the corresponding plugin does not contain a reference to the rmg plugin class.- Author:
- Tobias Neitzel (@qtc_de)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MalformedPluginException()Constructor with zero arguments.MalformedPluginException(String message)Constructor with message argument.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MalformedPluginException
public MalformedPluginException()
Constructor with zero arguments.
-
MalformedPluginException
public MalformedPluginException(String message)
Constructor with message argument.- Parameters:
message- exception message.
-
-