Archived
0
This repository has been archived on 2024-08-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Modules/src/com/redstoner/utils/CommandException.java
Pepich d965f30dca General cleanup
Removing outdated comments
Removing outdated annotations
Adding new annotations
Removing deprecation
2017-05-30 11:56:56 +02:00

30 lines
593 B
Java

package com.redstoner.utils;
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);
}
}