zKoth/src/fr/maxlego08/koth/exceptions/ListenerNullException.java

36 lines
831 B
Java

package fr.maxlego08.koth.exceptions;
public class ListenerNullException extends Error {
/**
*
*/
private static final long serialVersionUID = 1L;
public ListenerNullException() {
// TODO Auto-generated constructor stub
}
public ListenerNullException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public ListenerNullException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public ListenerNullException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public ListenerNullException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}