package wto.prito.inf66268.exceptions;

/**
 * @author Szymon Krzysztyniak
 */
public class NotANumberException extends Exception {

	public NotANumberException() {
		super();
	}

	public NotANumberException(String message) {
		super(message);
	}
	
	public NotANumberException(Throwable exception) {
		//super(exception);
	}
	
	public NotANumberException(String message, Throwable exception) {
		//super(message, exception);
	}

}

