blob: 722c44a484657380b8b343849a2ef3f3c9969fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
class MissingFile(Exception):
def __init__(self, f, advice):
self.f = f
self.advice = advice
def __str__(self):
if advice == None:
return "No required file: " + f
else:
return "No required file: " + f + "\n" + advice
class NoSolution(Exception):
def __init__(self):
pass
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."
|