Archived
0

General cleanup

Removing outdated comments
Removing outdated annotations
Adding new annotations
Removing deprecation
This commit is contained in:
Pepich
2017-05-30 11:56:56 +02:00
parent c0fab2a72e
commit d965f30dca
9 changed files with 82 additions and 77 deletions

View File

@@ -1,23 +1,29 @@
package com.redstoner.utils;
public class CommandException extends Exception {
public CommandException(String message, Throwable cause) {
super(message, cause);
}
public CommandException(Throwable cause) {
super(cause);
}
public CommandException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public CommandException() {
}
public CommandException(String message) {
super(message);
}
public class CommandException extends Exception
{
private static final long serialVersionUID = -7176634557736106754L;
public CommandException(String message, Throwable cause)
{
super(message, cause);
}
public CommandException(Throwable cause)
{
super(cause);
}
public CommandException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
public CommandException()
{}
public CommandException(String message)
{
super(message);
}
}