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