summaryrefslogtreecommitdiffstats
path: root/src/proguard/InputReader.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/InputReader.java')
-rw-r--r--src/proguard/InputReader.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proguard/InputReader.java b/src/proguard/InputReader.java
index c088324..9ee1314 100644
--- a/src/proguard/InputReader.java
+++ b/src/proguard/InputReader.java
@@ -2,7 +2,7 @@
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
- * Copyright (c) 2002-2009 Eric Lafortune (eric@graphics.cornell.edu)
+ * Copyright (c) 2002-2011 Eric Lafortune (eric@graphics.cornell.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
@@ -227,7 +227,7 @@ public class InputReader
}
catch (IOException ex)
{
- throw new IOException("Can't read [" + classPathEntry + "] (" + ex.getMessage() + ")");
+ throw (IOException)new IOException("Can't read [" + classPathEntry + "] (" + ex.getMessage() + ")").initCause(ex);
}
}
}