-
Can we add multiple if or if – else if statements in a try catch block?
Is something like below even possible?
static String TEST_LINK = ‘someLink/’;
static String TEST_LINK2 = ‘otherLink/’;
//class method
public someMethod(String test) {
try {
if (!somecondition.matches(TEST_LINK)) { return something;}
if (!somecondition.matches(TEST_LINK2)) { return something;}
} catch (Exception e) {
}
}
Log In to reply.