diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java index 911b1f6a7..10efb9f21 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java @@ -3,6 +3,7 @@ * Copyright (C) 2008-2010, Google Inc. * Copyright (C) 2006-2010, Robin Rosenberg * Copyright (C) 2006-2012, Shawn O. Pearce + * Copyright (C) 2012, Daniel Megert * and other copyright owners as documented in the project's IP log. * * This program and the accompanying materials are made available @@ -377,7 +378,8 @@ public abstract class Repository { * on serious errors */ public ObjectId resolve(final String revstr) - throws AmbiguousObjectException, IOException { + throws AmbiguousObjectException, IncorrectObjectTypeException, + RevisionSyntaxException, IOException { RevWalk rw = new RevWalk(this); try { Object resolved = resolve(rw, revstr);