customize exception

1
2
3
4
5
public class MyException extends RuntimeException{
public MyException(String msg){
super(msg);
}
}