summaryrefslogtreecommitdiff
path: root/lib/classes.py
blob: 33cc0ea5820dd4b395dd513311a930053f9d005a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
RED = '\033[91m'
YELLOW = '\033[93m'
GREY = '\033[90m'
BLACK = '\033[0m'
BOLD = '\033[1m'

class PersonalError(Exception):

    def __init__(self, value):
        self.value = value

    def __str__(self):
        return repr(self.value)