blob: d982d2d54dc5510f6f3ff0b25902161567a4c624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
""" Base exceptions for MAT
"""
class UnableToRemoveFile(Exception):
"""This exception is raised when a file could not be removed
"""
pass
class UnableToWriteFile(Exception):
"""This exception is raised when a file
can could not be chmod +w
"""
pass
|