Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27729/input/javasrc/biz/xsoftware/mock2
Modified Files:
ExpectFailedException.java
Log Message:
edit expectFailedException to add a new constructor
Index: ExpectFailedException.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2/ExpectFailedException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ExpectFailedException.java 5 Apr 2006 23:51:38 -0000 1.3
--- ExpectFailedException.java 6 Apr 2006 15:37:55 -0000 1.4
***************
*** 57,60 ****
--- 57,67 ----
}
+
+ public ExpectFailedException(String message) {
+ super(message);
+
+ }
+
+
/**
* Gets the reason expecting the call(s) failed.
|