Runtime exceptions are unchecked exceptions, we can handle them through try catch block. try { ... do stuff ... } catch (SomeException e) { e.printStackTrace(); throw e; }