Package org.bukkit.plugin
Class UnknownDependencyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.bukkit.plugin.UnknownDependencyException
- All Implemented Interfaces:
java.io.Serializable
public class UnknownDependencyException
extends java.lang.RuntimeException
Thrown when attempting to load an invalid Plugin file
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description UnknownDependencyException()
Constructs a new UnknownDependencyExceptionUnknownDependencyException(java.lang.String message)
Constructs a new UnknownDependencyException with the given messageUnknownDependencyException(java.lang.Throwable throwable)
Constructs a new UnknownDependencyException based on the given ExceptionUnknownDependencyException(java.lang.Throwable throwable, java.lang.String message)
Constructs a new UnknownDependencyException based on the given Exception -
Method Summary
-
Constructor Details
-
UnknownDependencyException
public UnknownDependencyException(java.lang.Throwable throwable)Constructs a new UnknownDependencyException based on the given Exception- Parameters:
throwable
- Exception that triggered this Exception
-
UnknownDependencyException
public UnknownDependencyException(java.lang.String message)Constructs a new UnknownDependencyException with the given message- Parameters:
message
- Brief message explaining the cause of the exception
-
UnknownDependencyException
public UnknownDependencyException(java.lang.Throwable throwable, java.lang.String message)Constructs a new UnknownDependencyException based on the given Exception- Parameters:
message
- Brief message explaining the cause of the exceptionthrowable
- Exception that triggered this Exception
-
UnknownDependencyException
public UnknownDependencyException()Constructs a new UnknownDependencyException
-