throws java.lang.Exception code example
Example 1: java how to throw exception
public class ThrowException{
public static void main(String [] args) throws Exception{
//throws Exception line is needed if not using try-catch block
throw new Exception("Errmessage");
}
}
Example 2: java throws exception on method
static void testMethod() throws Exception {
String test = null;
test.toString();
}