try and catch code example
Example 1: java try catch
try {
// Code that may have error
} catch(ErrorName e){
// Another code
}
Example 2: try block in java
try {
// Block of code to try
}
catch(Exception e) {
// Block of code to handle errors
}
Example 3: javascript try
var someNumber = 1;
try {
someNumber.replace("-",""); //You can't replace a int
} catch(err) {
console.log(err);
}