Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
UnknownDependencyException.java
Go to the documentation of this file.
1 package org.bukkit.plugin;
2 
6 public class UnknownDependencyException extends RuntimeException {
7 
8  private static final long serialVersionUID = 5721389371901775895L;
9 
15  public UnknownDependencyException(final Throwable throwable) {
16  super(throwable);
17  }
18 
24  public UnknownDependencyException(final String message) {
25  super(message);
26  }
27 
34  public UnknownDependencyException(final Throwable throwable, final String message) {
35  super(message, throwable);
36  }
37 
42 
43  }
44 }