Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
191 Bytes
package exceptionexample3;
/**
*
* @author DeLL
*/
public class NegativeNumberException extends Exception {
public NegativeNumberException(String msg){
super(msg);
}
}