From: Vance K. <va...@us...> - 2006-03-09 04:32:06
|
User: vancek Date: 06/03/08 20:32:04 Modified: andromda-ejb3/src/main/resources/templates/ejb3 SessionListener.vsl Log: fixed exception Revision Changes Path 1.5 +4 -4 cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionListener.vsl Index: SessionListener.vsl =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/templates/ejb3/SessionListener.vsl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- SessionListener.vsl 2 Mar 2006 10:26:09 -0000 1.4 +++ SessionListener.vsl 9 Mar 2006 04:32:03 -0000 1.5 @@ -29,7 +29,7 @@ } catch (Exception ex) { - throw new RuntimeException(e); + throw new RuntimeException(ex); } } @@ -43,7 +43,7 @@ } catch (Exception ex) { - throw new RuntimeException(e); + throw new RuntimeException(ex); } } #if ($service.stateful) @@ -58,7 +58,7 @@ } catch (Exception ex) { - throw new RuntimeException(e); + throw new RuntimeException(ex); } } @@ -72,7 +72,7 @@ } catch (Exception ex) { - throw new RuntimeException(e); + throw new RuntimeException(ex); } } #end |