01: package net.sf.mockcreator; 02: 03: public interface BugExpectThrowable { 04: Object testMethod() throws Throwable; 05: 06: Object testMethod2() throws Throwable, IllegalArgumentException; 07: 08: Object testMethod3() throws Throwable, IllegalArgumentException, 09: IllegalArgumentException; 10: }