Stack-Repo
/
data
/train
/rghvgrv
/Simple-Programs
/Java-Programs
/Exceptionhandling
/NegativeNumberException
/NegativeNumberException.javan.java
package exceptionexample3; | |
/** | |
* | |
* @author DeLL | |
*/ | |
public class NegativeNumberException extends Exception { | |
public NegativeNumberException(String msg){ | |
super(msg); | |
} | |
} | |