summaryrefslogtreecommitdiff
blob: ceb5a58e2d5fe7f6bb13a1ebd638dd54f0782842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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]