mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-10 00:08:20 -05:00
5 lines
124 B
Python
5 lines
124 B
Python
class WrongScriptException(Exception):
|
|
|
|
def __init__(self, msg):
|
|
Exception.__init__(self)
|
|
self.msg = msg |