try {
myroutine(); // may throw three types of exceptions
} catch (e) {
if (e instanceof TypeError) {
// statements to handle TypeError exceptions
} else if (e instanceof RangeError) {
// statements to handle RangeError exceptions
} else if (e instanceof EvalError) {
// statements to handle EvalError exceptions
} else {
// statements to handle any unspecified exceptions
logMyErrors(e); // pass exception object to error handler
}
}
####
try:
# your code here
except FileNotFoundError:
# handle exception
except IsADirectoryError:
# handle exception
except: # *
# all other types of exceptions
print('Should reach here')
####
try {
# your code here
} catch {
only { FileNotFoundError }; # °
# handle exception
} catch {
only { IsADirectoryError };
# handle exception
} catch { # *
# all other types of exceptions
};
print('Should reach here')
####
try {
# your code here
} catch { FileNotFoundError } sub {
# handle exception
}, catch { IsADirectoryError } sub {
# handle exception
}, catch { # *
# all other types of exceptions
};
print('Should reach here')
####
try {
# your code here
} catch { FileNotFoundError }_ {
# handle exception
} catch { IsADirectoryError }_ {
# handle exception
} catch { # *
# all other types of exceptions
};
print('Should reach here')