RosettaCodeData/Task/Exceptions/Java/exceptions-1.java

8 lines
181 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
//Checked exception
public class MyException extends Exception {
//Put specific info in here
}
//Unchecked exception
public class MyRuntimeException extends RuntimeException {}