From: Arfrever Frehtes Taifersar Arahesis Date: Sat, 10 Dec 2011 05:26:32 +0000 (+0100) Subject: Add portage.exception.OperationNotSupported exception. X-Git-Tag: v2.2.0_alpha80~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5dfa6ccea15ae4b71756a7cb581a5a83392fc33a;p=portage.git Add portage.exception.OperationNotSupported exception. --- diff --git a/pym/portage/exception.py b/pym/portage/exception.py index 789112072..5ccd750ab 100644 --- a/pym/portage/exception.py +++ b/pym/portage/exception.py @@ -78,6 +78,10 @@ class OperationNotPermitted(PortageException): from errno import EPERM as errno """An operation was not permitted operating system""" +class OperationNotSupported(PortageException): + from errno import EOPNOTSUPP as errno + """Operation not supported""" + class PermissionDenied(PortageException): from errno import EACCES as errno """Permission denied"""