summaryrefslogtreecommitdiffstats
path: root/tests/test-framework/checker/testrunner/testexception.py
blob: 58254a599c1058e9bad1f311b50031acb7a78cac (plain)
1
2
3
4
5
class TestException( Exception ):
    def __init__( self, value ):
        self.value = value
    def __str__( self ):
      return repr( self.value )