Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
343 Bytes
package exceptionexample3;
/**
*
* @author DeLL
*/
public class CheckNum {
public void checknumber(int a)throws NegativeNumberException{
if(a>=0){
System.out.println("The number you have entered is valid");
}
else{
String msg="Please enter the positive number!";
throw new NegativeNumberException(msg);
}
}
}