]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blobdiff - scripts/exceptions.py
Scripts changed to use database.
[linux-conf-perf.git] / scripts / exceptions.py
index 730664aa61b536abd63a61498aba76f59ba2a2c9..89fba0aab29234ea50d649a37b92af63564c7297 100644 (file)
@@ -14,23 +14,17 @@ class NoSolution(Exception):
        def __str__(self):
                return "SAT solver found no solution. Statement is not satisfiable."
 
-class PhaseMismatch(Exception):
-       def __init__(self):
-               pass
-       def __str__(self):
-               return "Phase in " + conf.phase_file + " is unknown."
-
 class ConfigurationError(Exception):
        def __init__(self, message):
                self.message = message;
        def __str__(self):
                return "Configuration error: " + message
 
-class NoApplicableSolution(Exception):
+class NoApplicableConfiguration(Exception):
        def __init__(self):
                pass
        def __str__(self):
-               return "No applicable solution find. All generated solutions were already applied."
+               return "No applicable configuration find. All generated configurations were already applied."
 
 class ProcessFailed(Exception):
        def __init__(self, process, returncode):