fattureCCSR: added filepicker and filedialog for input and output files. Started working on exceptions handling.

Signed-off-by: Ettore Dreucci <ettore.dreucci@gmail.com>
This commit is contained in:
2020-11-26 10:41:00 +01:00
parent 71e9709b3d
commit 850505cdf9
5 changed files with 54 additions and 83 deletions

7
exc.py Normal file
View File

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