package exceptionexample3; /** * * @author DeLL */ public class NegativeNumberException extends Exception { public NegativeNumberException(String msg){ super(msg); } }