class TestLauncherException extends RuntimeException {
    TestLauncherException() {
        super("No trace", null, true, false);
    }

    public static void main(String... args) {
        throw new TestLauncherException();
    }
}