summaryrefslogtreecommitdiff
path: root/source/globals.py
blob: f7e63883a36b9be871a36ddac3cec3586e11c7e8 (plain)
1
2
3
4
5
6
7
8
9

import sys

def error (msg):
    sys.stderr.write(msg + "\n")

class Exception:
    def __init__ (self, msg):
        self.msg = msg