7 lines
181 B
Java
7 lines
181 B
Java
//Checked exception
|
|
public class MyException extends Exception {
|
|
//Put specific info in here
|
|
}
|
|
|
|
//Unchecked exception
|
|
public class MyRuntimeException extends RuntimeException {}
|