File size: 225 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
package isufficientbalanceexception;
/**
*
* @author DeLL
*/
public class MyException extends Exception {
public MyException(String msg){
//supplies this message to the parent class constructor
super(msg);
}
}
|