Source code for dsfp.exceptions

""" DSFP utils for some routines

.. module:: dsfp.exceptions
    :platform: Linux, Windows, MacOS X
    :synopsis: general exceptions for inner routines
.. moduleauthor:: Tarvitz<tarvitz@blacklibrary.ru>
"""


[docs]class FileTypeException(Exception): """ not a DarkSouls save file exception """ def __init__(self, *args): self.args = args
[docs]class ImproperlyConfigured(Exception): """ Improperly configured exception """ def __init__(self, *args): self.args = args