Skip to content

Commit 6864d74

Browse files
add missing exception
1 parent 6b3c6a8 commit 6864d74

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

FABulous/custom_exception.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
class CommandError(Exception):
2+
"""Exception raised for errors in the command execution."""
3+
pass
4+
5+
class EnvironmentNotSet(Exception):
6+
"""Exception raised when the environment is not set."""
7+
pass
8+
9+
class FileTypeError(Exception):
10+
"""Exception raised for unsupported file types."""
11+
pass

0 commit comments

Comments
 (0)