mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
16 lines
417 B
Python
16 lines
417 B
Python
__all__ = ['ManifestError']
|
|
|
|
|
|
class ManifestError(Exception):
|
|
def __init__(self, message, manifest):
|
|
self.message = message
|
|
self.manifest = manifest
|
|
def __str__(self):
|
|
return "Error in manifest {0}: {1}".format(self.manifest.path, self.message)
|
|
|
|
|
|
class TaskListError(Exception):
|
|
def __init__(self, message):
|
|
self.message = message
|
|
def __str__(self):
|
|
return "Error in tasklist: {0}".format(self.message)
|