class MyException extends Exception { public MyException() { } public MyException(String msg) { super(msg); } }; public class CreateException { public static void main(String[] args) { try { throw new MyException("my message"); } catch (Exception e) { System.out.println("Exception Type: " + e ); } } }
# java CreateException Exception Type: MyException: my message
Basic Try Catch
Basic Try Catch Finally
Catch Multiple Exceptions At Once
Chained Exceptions
Create Your Own Exception Class
Example Of A NullPointerException
Exception Matching
Get A Stack Trace Of An Exception
Handling Multiple Catch Clauses
Print Stack Trace
Propagating an Exception
Rethrowing Exceptions
Shutdown Hook
Throw an Exception
Try Block Where Finally Clause Does Not Run
Try Block Without Catch
Try With Resources Statement