134135136137138139140141
} @Override public JavaType[] getExceptionTypes() { final ASTNameList exceptions = _method.getThrows(); return exceptions == null ? new JavaType[0] : exceptions.getTypes(); }
136137138139140141142
} protected ASTNameList getExceptions(final MethodInfo method) { return method.getExceptionTypes().length == 0 ? null : new ASTNameList(method.getExceptionTypes()); }