mirror of
https://github.com/OpenMTC/OpenMTC.git
synced 2025-06-16 05:38:06 +00:00
15 lines
180 B
Python
15 lines
180 B
Python
'''
|
|
Created on 26.05.2013
|
|
|
|
@author: kca
|
|
'''
|
|
from openmtc.exc import OpenMTCError
|
|
|
|
|
|
class ModelError(OpenMTCError):
|
|
pass
|
|
|
|
|
|
class ModelTypeError(ModelError, TypeError):
|
|
pass
|