summaryrefslogtreecommitdiffstats
path: root/test-framework/checker/testrunner/testexception.py
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-02-21 16:30:31 +0100
committerTim Jenssen <tim.jenssen@nokia.com>2011-02-21 16:41:32 +0100
commit8457830abdca9d5769e2ec1bdbfb793a05e6c5dd (patch)
tree4c9e87efd34104ec59ae31efd0394e998a2434f7 /test-framework/checker/testrunner/testexception.py
init commit
Diffstat (limited to 'test-framework/checker/testrunner/testexception.py')
-rw-r--r--test-framework/checker/testrunner/testexception.py5
1 files changed, 5 insertions, 0 deletions
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 )