Browse Source

Pass the ManifestException to BuildException

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271891 13f79535-47bb-0310-9956-ffa450edef68
master
Magesh Umasankar 23 years ago
parent
commit
3fd83cae2d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Manifest.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Manifest.java View File

@@ -548,7 +548,7 @@ public class Manifest extends Task {
} }
} }
catch (ManifestException e) { catch (ManifestException e) {
throw new BuildException("Default manifest is invalid !!");
throw new BuildException("Default manifest is invalid !!", e);
} }
catch (IOException e) { catch (IOException e) {
throw new BuildException("Unable to read default manifest", e); throw new BuildException("Unable to read default manifest", e);


Loading…
Cancel
Save