]> mj.ucw.cz Git - eval.git/blobdiff - t/moe/__init__.py
Minor doc updates and fixes
[eval.git] / t / moe / __init__.py
index 2ce549975d842130c7c3fe8876b24f690709f790..63ca9b65108c95a7fc957e8fff77706427ec664e 100644 (file)
@@ -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