Source code for ptrail.utilities.exceptions

"""
    This file contains all the custom designed exception headers.
    There is nothing here but the exception headers and pass written inside them.
    The purpose of the file is to store all exceptions in one place.

    | Authors: Yaksh J Haranwala, Salman Haidri
"""


[docs]class NoHeadersException(Exception): pass
[docs]class MissingColumnsException(Exception): pass
[docs]class DataTypeMismatchException(Exception): pass
[docs]class MandatoryColumnException(Exception): pass
[docs]class MissingTrajIDException(Exception): pass
[docs]class NotAllowedError(Exception): pass
[docs]class DateTimeFormatInvalid(Exception): pass