Remove declarations of unthrown OrmException

Change-Id: I4081fefd085e5530dff606ec632af2f2c79481c6
diff --git a/src/main/java/com/googlesource/gerrit/plugins/task/TaskTree.java b/src/main/java/com/googlesource/gerrit/plugins/task/TaskTree.java
index daefe23..a67653b 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/task/TaskTree.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/task/TaskTree.java
@@ -113,7 +113,7 @@
       addExternalDefinitions();
     }
 
-    protected void addSubFileDefinitions() throws OrmException {
+    protected void addSubFileDefinitions() {
       for (String file : definition.subTasksFiles) {
         try {
           addSubDefinitions(getTasks(definition.config.getBranch(), file));
diff --git a/src/main/java/com/googlesource/gerrit/plugins/task/cli/PatchSetArgument.java b/src/main/java/com/googlesource/gerrit/plugins/task/cli/PatchSetArgument.java
index a7e9063..bcbb972 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/task/cli/PatchSetArgument.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/task/cli/PatchSetArgument.java
@@ -69,7 +69,7 @@
       }
     }
 
-    protected PatchSet.Id parsePatchSet(String patchIdentity) throws UnloggedFailure, OrmException {
+    protected PatchSet.Id parsePatchSet(String patchIdentity) throws UnloggedFailure {
       // By older style change,patchset
       if (patchIdentity.matches("^[1-9][0-9]*,[1-9][0-9]*$")) {
         try {