Files
fattureCCSR/exc.py

8 lines
200 B
Python

"""Define Python user-defined exceptions"""
class Error(Exception):
"""Base class for other exceptions"""
class WrongFileExtension(Error):
"""Raised when a file extension is not accepted"""