You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throw new CustomException1("My custom exception message goes here");
} catch (CustomException1 e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//Errors - hardware failures, checked exception - which we can anticipate and handle, unchecked exception - which we cannot anticipate(array index out of bound)