exception and error都是继承throwable类;
Exception就是程序中出现的异常,程序会去捕获;
但是error是比较严重的错误,程序是不会去捕获的;
erroe:一般都是jvm错误,虚拟机的内存泄露;