summaryrefslogtreecommitdiff
path: root/python/exceptions.py
blob: a2ba197abbacf6ec701b865e229993e2b118d21d (plain)
1
2
3
4
5
6
7
8
9
10
11
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