blob: 83e52f0738d0a526afc6a2c2c5101e293595eb0d [file] [log] [blame]
package testsubjects;
import testannotations.MethodAnnotation;
public class DeclaredExceptions
{
@MethodAnnotation
public void throwsRuntime() throws RuntimeException {
throw new RuntimeException("throwsRuntime");
}
@MethodAnnotation
public void throwsError() throws Error {
throw new Error("throwsError");
}
@MethodAnnotation
public void throwsException() throws Exception {
throw new Exception("throwsException");
}
}