summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/symtab/classfile/AttributeParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/symtab/classfile/AttributeParser.java b/sources/scalac/symtab/classfile/AttributeParser.java
index e93e07bbaa..7ddc1b0ef1 100644
--- a/sources/scalac/symtab/classfile/AttributeParser.java
+++ b/sources/scalac/symtab/classfile/AttributeParser.java
@@ -109,7 +109,7 @@ public class AttributeParser implements ClassfileConstants {
UnPickle.parse(parser.global, in.nextBytes(attrLen), sym);
return;
} catch (UnPickle.BadSignature exception) {
- throw new RuntimeException(exception.getMessage());
+ throw new RuntimeException(exception);
}
case INNERCLASSES_ATTR:
int n = in.nextChar();