]> jfr.im git - irc/rizon/acid.git/commitdiff
fixed a minor inconsistency in variable naming in SQL.java
authorchristinaa <redacted>
Sun, 27 Aug 2017 20:26:12 +0000 (21:26 +0100)
committerchristinaa <redacted>
Sun, 27 Aug 2017 20:26:12 +0000 (21:26 +0100)
acid/src/main/java/net/rizon/acid/sql/SQL.java

index 384f85b0562e0713d398f688ee461f196509291d..c1dc9d135f7692cbbb7fec1bbb22b82fcadf1d9d 100644 (file)
@@ -252,9 +252,9 @@ public class SQL extends Thread
                {
                        throw new RuntimeException(ex.getMessage());
                }
-               catch (SQLException e)
+               catch (SQLException ex)
                {
-                       throw new RuntimeException(e.getMessage());
+                       throw new RuntimeException(ex.getMessage());
                }
 
                return null;