Browse Source

Missing throw in VAJImport

Reported by:	David Rees


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268872 13f79535-47bb-0310-9956-ffa450edef68
master
glennm 24 years ago
parent
commit
f80406c2b8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJImport.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJImport.java View File

@@ -298,7 +298,7 @@ public class VAJImport extends Task {
throw new BuildException("Unable to import into Workspace!"); throw new BuildException("Unable to import into Workspace!");
} }
} catch (IvjException ivje) { } catch (IvjException ivje) {
VAJUtil.createBuildException("Error while importing into Workspace: ", ivje);
throw VAJUtil.createBuildException("Error while importing into Workspace: ", ivje);
} }
} }




Loading…
Cancel
Save