blob: 47da15c0d1372f225c7468688eeb654d80639b04 (
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
|