示例#1
1
文件: _.java 项目: GoWarp/pysonar2
    public static void die(String msg, Exception e) {
        System.err.println(msg);

        if (e != null) {
            System.err.println("Exception: " + e + "\n");
        }

        Thread.dumpStack();
        System.exit(2);
    }
示例#2
0
 static void fail() {
   failed++;
   Thread.dumpStack();
 }