summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/UninstallFailure.py
blob: 04866d6cceda6514804d895d17c4c398e866cfff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
try:
	import portage
except ImportError:
	from os import path as osp
	import sys
	sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym"))
	import portage
	
class UninstallFailure(portage.exception.PortageException):
	"""
	An instance of this class is raised by unmerge() when
	an uninstallation fails.
	"""
	status = 1
	def __init__(self, *pargs):
		portage.exception.PortageException.__init__(self, pargs)
		if pargs:
			self.status = pargs[0]