Changed all tabs to 4 spaces

By: durron597 <martin.jared@gmail.com>
This commit is contained in:
Bukkit/Spigot
2011-01-01 08:01:07 -05:00
parent cf3973a5f9
commit 76ab7321fd
19 changed files with 203 additions and 204 deletions

View File

@ -1,8 +1,8 @@
package org.bukkit.event;
public class EventException extends Exception {
private static final long serialVersionUID = 3532808232324183999L;
private final Throwable cause;
private static final long serialVersionUID = 3532808232324183999L;
private final Throwable cause;
/**
* Constructs a new EventException based on the given Exception
@ -24,18 +24,18 @@ public class EventException extends Exception {
* Constructs a new EventException with the given message
*/
public EventException(Throwable cause, String message) {
super(message);
this.cause = cause;
super(message);
this.cause = cause;
}
/**
* Constructs a new EventException with the given message
*/
public EventException(String message) {
super(message);
cause = null;
super(message);
cause = null;
}
/**
* If applicable, returns the Exception that triggered this Exception
*