summaryrefslogtreecommitdiffstats
path: root/test-framework/checker/testrunner/testexception.py
diff options
context:
space:
mode:
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 )