Skip to content

Commit 65d05e0

Browse files
committed
Use simple exception var name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1306035 13f79535-47bb-0310-9956-ffa450edef68
1 parent 67c6038 commit 65d05e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,8 +512,8 @@ private static byte[] utf8(String s) {
512512

513513
try {
514514
return s != null ? s.getBytes("UTF-8") : null;
515-
} catch (UnsupportedEncodingException uee) {
516-
throw new IllegalStateException(uee.toString());
515+
} catch (UnsupportedEncodingException e) {
516+
throw new IllegalStateException(e.toString());
517517
}
518518
}
519519
}

0 commit comments

Comments
 (0)