package hu.ppke.itk.java.hakta.hf04;

public class OverFlowException extends Exception {

	private static final long serialVersionUID = 1L;

	public OverFlowException() {
		super("Felülcsordulás!");
	}

	public OverFlowException(String arg0) {
		super(arg0);
	}

	public OverFlowException(Throwable arg0) {
		super(arg0);
	}

	public OverFlowException(String arg0, Throwable arg1) {
		super(arg0, arg1);
	}

	public OverFlowException(String arg0, Throwable arg1, boolean arg2, boolean arg3) {
		super(arg0, arg1, arg2, arg3);
	}

}
