public class ThrowException { public static void main(String[] args) { throw new IllegalArgumentException("Bad Argument"); } }
# java ThrowException Exception in thread "main" java.lang.IllegalArgumentException: Bad Argument at ThrowException.main(ThrowException.java:3)
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