summaryrefslogtreecommitdiff
path: root/lib/classes.py
blob: 3a95e1905fda32588075dd79df62fd0c58d090cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
RED = '\033[91m'
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)