Java Throwable

Java的Exception处理机制中,基类是:throwable, 然后exception和error继承自throwable. RuntimeException继承自Exception.

[b]throw的runtimeException和error不需要catch
throw的throwable和checkedException需要catch[/b]

自定义的Exception需要实现:super(), super(message), super(throwable), super(message, throwable).

[b][color=red]如果exception被catch,程序总会执行结束的。[/color][/b]

你可能感兴趣的:(Java,Java)