Glider
Loading...
Searching...
No Matches
glider
src
importer
templates
TemplateError.py
Go to the documentation of this file.
1
# from ..ErrorHandler import ErrorHandler
2
3
class
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
src.importer.templates.TemplateError.TemplateError
Definition
TemplateError.py:3
src.importer.templates.TemplateError.TemplateError.message
message
Definition
TemplateError.py:8
src.importer.templates.TemplateError.TemplateError.__init__
__init__(self, message)
Definition
TemplateError.py:7
src.importer.templates.TemplateError.TemplateError.__str__
__str__(self)
Definition
TemplateError.py:12
Generated by
1.12.0