# By: Riasat Ullah
# This file contains custom exceptions that can be thrown.


class InvalidRequest(Exception):

    def __init__(self, message):
        '''
        This exception should be thrown when an invalid http request is detected.
        :param message: the error message
        '''
        self.message = message
