サンプル

public class Example {
public void run() throws Throwable {
throw new Throwable( "Problem" ); //$NON-NLS-1$
}
}

解決策
java.lang.Exception の固有なサブクラスを作成します。

public static class ExceptionSubclass extends Exception {
public ExceptionSubclass( String s ){
super(s);
}
}

public class Example {
public void run() throws ExceptionSubclass {
throw new ExceptionSubclass( "Problem" ); //$NON-NLS-1$
}
}