Java Error and exception
There are two type of Error in Java 1. “Error” , 2. “Exception”.
Error is something that fatel error such as problem of JVM itself or stackoverflow etc. In this case, just let the system down.
Exception is something due to programme and user’s normal problem, such as read a non-exist file, user input error etc. That can be handled by try-catch-code.
Java Error and exception