在EDT中和EDT外,未捕获的异常之间存在区别。
另一个问题有一个解决方案,但是如果您只想咀嚼EDT部分的话…
class AWTExceptionHandler { public void handle(Throwable t) { try { // insert your exception handling pre here // or do nothing to make it go away } catch (Throwable t) { // don't let the exception get thrown out, will cause infinite looping! } } public static void registerExceptionHandler() { System.setProperty('sun.awt.exception.handler', AWTExceptionHandler.class.getName()) }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)