标签: java exception exception-handling
甚至可能吗?
从我在Java Tutorial中读到的内容中,抛出RuntimeException的方法不需要被try / catch包围,也不需要抛出。是否可以编写自己的RuntimeException?
RuntimeException
try
catch
答案 0 :(得分:10)
是
public class MyException extends RuntimeException { /* add constructors. */ }