Glider
Loading...
Searching...
No Matches
TemplateError.py
Go to the documentation of this file.
1# from ..ErrorHandler import ErrorHandler
2
3class TemplateError(Exception):
4 """
5 Returns an Error message when the current file is not found in our formats database
6 """
7 def __init__(self, message):
8 self.message = message
9
10 super().__init__(message)
11
12 def __str__(self):
13 return self.message