catch err throw err java code example
Example 1: javascript try
var someNumber = 1;
try {
someNumber.replace("-",""); //You can't replace a int
} catch(err) {
console.log(err);
}
Example 2: java return exception
void testMethod() throws ArithmeticException, ArrayIndexOutOfBoundsException {
// rest of code
}