blob: a9b4b5aa115816b7afc7432f00d68e13cfeb1fd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class RelocationWriteException(Exception):
""" Exception raised when a relocation fails to apply """
pass
class ILException(Exception):
""" Exception raised when IL operations fail """
pass
class ProjectException(Exception):
""" Exception raised when project operations fail """
pass
class ExternalLinkException(Exception):
""" Exception raised when external library/location operations fail """
pass
|