From 8457830abdca9d5769e2ec1bdbfb793a05e6c5dd Mon Sep 17 00:00:00 2001 From: Tim Jenssen Date: Mon, 21 Feb 2011 16:30:31 +0100 Subject: init commit --- test-framework/checker/testrunner/testexception.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test-framework/checker/testrunner/testexception.py (limited to 'test-framework/checker/testrunner/testexception.py') diff --git a/test-framework/checker/testrunner/testexception.py b/test-framework/checker/testrunner/testexception.py new file mode 100644 index 000000000..58254a599 --- /dev/null +++ b/test-framework/checker/testrunner/testexception.py @@ -0,0 +1,5 @@ +class TestException( Exception ): + def __init__( self, value ): + self.value = value + def __str__( self ): + return repr( self.value ) -- cgit v1.2.3