mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-10 00:13:55 -04:00
5 lines
127 B
Python
5 lines
127 B
Python
class WrongModelException(Exception):
|
|
|
|
def __init__(self, msg):
|
|
Exception.__init__(self)
|
|
self.msg = msg |