Package org.bukkit.plugin
Class InvalidPluginException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.bukkit.plugin.InvalidPluginException
- All Implemented Interfaces:
- java.io.Serializable
public class InvalidPluginException
extends java.lang.Exception
Thrown when attempting to load an invalid Plugin file
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description InvalidPluginException()Constructs a new InvalidPluginExceptionInvalidPluginException(java.lang.String message)Constructs a new InvalidPluginException with the specified detail messageInvalidPluginException(java.lang.String message, java.lang.Throwable cause)Constructs a new InvalidPluginException with the specified detail message and cause.InvalidPluginException(java.lang.Throwable cause)Constructs a new InvalidPluginException based on the given Exception
- 
Method Summary
- 
Constructor Details- 
InvalidPluginExceptionpublic InvalidPluginException(java.lang.Throwable cause)Constructs a new InvalidPluginException based on the given Exception- Parameters:
- cause- Exception that triggered this Exception
 
- 
InvalidPluginExceptionpublic InvalidPluginException()Constructs a new InvalidPluginException
- 
InvalidPluginExceptionpublic InvalidPluginException(java.lang.String message, java.lang.Throwable cause)Constructs a new InvalidPluginException with the specified detail message and cause.- Parameters:
- message- 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.)
 
- 
InvalidPluginExceptionpublic InvalidPluginException(java.lang.String message)Constructs a new InvalidPluginException with the specified detail message- Parameters:
- message- TThe detail message is saved for later retrieval by the getMessage() method.
 
 
-