You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/03/28 00:39:46 UTC

svn commit: r1306035 - /commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java

Author: ggregory
Date: Tue Mar 27 22:39:46 2012
New Revision: 1306035

URL: http://svn.apache.org/viewvc?rev=1306035&view=rev
Log:
Use simple exception var name.

Modified:
    commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java

Modified: commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java?rev=1306035&r1=1306034&r2=1306035&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java (original)
+++ commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/Base64Codec13Test.java Tue Mar 27 22:39:46 2012
@@ -512,8 +512,8 @@ public class Base64Codec13Test {
         
         try {
             return s != null ? s.getBytes("UTF-8") : null;
-        } catch (UnsupportedEncodingException uee) {
-            throw new IllegalStateException(uee.toString());
+        } catch (UnsupportedEncodingException e) {
+            throw new IllegalStateException(e.toString());
         }
     }
 }