RosettaCodeData/Task/Exceptions/Java/exceptions-1.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 {}