Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
try {
// stuff
} catch (SQLException sqle) {
String message = sqle.getMessage();
if (message.indexOf("ORA-00001") != -1) {
out.println("constraint violation");
} else {
out.println("some other ORA error");
}
}