summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/utils/CommandException.java
blob: 0b12125ef5dacd00a47fb39e6dec9dd7dee5ce96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
	}
}