Update of /cvsroot/springnet/Spring.Net
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv27897
Modified Files:
BreakingChanges-1.1.txt
Log Message:
TxExample - fix exception advice dsl - was using old syntax, add logging advice in addition
Add change in exception translation dsl to breaking changes.
Index: BreakingChanges-1.1.txt
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/BreakingChanges-1.1.txt,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** BreakingChanges-1.1.txt 23 Sep 2007 07:55:26 -0000 1.16
--- BreakingChanges-1.1.txt 13 Oct 2007 22:10:44 -0000 1.17
***************
*** 121,124 ****
--- 121,134 ----
+ Changes (M2 to RC1)
+ -----------------------------------
+
+ Spring.Aop
+
+ 1. Changed DSL for exception handling.
+ Instead of "on ArithmeticException log 'Logging an exception thrown from method ' + #method.Name"
+ now use "on exception name ArithmeticException log 'Logging an exception thrown from method ' + #method.Name
+ Basically add the words 'exception name' after the word 'on'
+
|