X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=t%2Fmoe%2F__init__.py;h=63ca9b65108c95a7fc957e8fff77706427ec664e;hb=b6a35869aee6b2b228b89609c25e081f5761e0dd;hp=2ce549975d842130c7c3fe8876b24f690709f790;hpb=a609f96f445c9d27420fa54a13eb7e587f1bd560;p=eval.git diff --git a/t/moe/__init__.py b/t/moe/__init__.py index 2ce5499..63ca9b6 100644 --- a/t/moe/__init__.py +++ b/t/moe/__init__.py @@ -1,9 +1,9 @@ # No initialization needed -class MoeErr(Exception): +class MoeError(Exception): pass -class SolutionErr(Exception): +class SolutionError(Exception): def __init__(self, message, stat_code=None): self.stat_code = stat_code @@ -15,5 +15,5 @@ class SolutionErr(Exception): else: return "%s: %s" % (self.stat_code, self.message) -class TestErr(SolutionErr): +class TestError(SolutionError): pass