blob: e71c39814b88d01c2ab438005081c19e13cb2104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
""" 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
|