VirtualEnvOnDemand.exceptions
index
/home/media/projects/VirtualEnvOnDemand/VirtualEnvOnDemand/exceptions.py

exceptions - A list of exceptions specific to VirtualEnvOnDemand

 
Classes
       
builtins.Exception(builtins.BaseException)
PipInstallFailed
VirtualEnvDoesNotExist

 
class PipInstallFailed(builtins.Exception)
    PipInstallFailed - Exception raised when pip fails to install a list of packages
 
 
Method resolution order:
PipInstallFailed
builtins.Exception
builtins.BaseException
builtins.object

Methods defined here:
__init__(self, returnCode=None, reqFileContents='')
Create a PipInstallFailed exception, building a message from some pieces of information
 
    @param returnCode <int> - Return code of subprocess, or None if undetermined
    @param reqFileContents <str> - String of requirements file to reproduce error

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from builtins.Exception:
__new__(*args, **kwargs) from builtins.type
Create and return a new object.  See help(type) for accurate signature.

Methods inherited from builtins.BaseException:
__delattr__(self, name, /)
Implement delattr(self, name).
__getattribute__(self, name, /)
Return getattr(self, name).
__reduce__(...)
helper for pickle
__repr__(self, /)
Return repr(self).
__setattr__(self, name, value, /)
Implement setattr(self, name, value).
__setstate__(...)
__str__(self, /)
Return str(self).
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.

Data descriptors inherited from builtins.BaseException:
__cause__
exception cause
__context__
exception context
__dict__
__suppress_context__
__traceback__
args

 
class VirtualEnvDoesNotExist(builtins.Exception)
    VirtualEnvDoesNotExist - Exception raised when an attempt to install into a virtualenv directory that does not exist
 
 
Method resolution order:
VirtualEnvDoesNotExist
builtins.Exception
builtins.BaseException
builtins.object

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from builtins.Exception:
__init__(self, /, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.
__new__(*args, **kwargs) from builtins.type
Create and return a new object.  See help(type) for accurate signature.

Methods inherited from builtins.BaseException:
__delattr__(self, name, /)
Implement delattr(self, name).
__getattribute__(self, name, /)
Return getattr(self, name).
__reduce__(...)
helper for pickle
__repr__(self, /)
Return repr(self).
__setattr__(self, name, value, /)
Implement setattr(self, name, value).
__setstate__(...)
__str__(self, /)
Return str(self).
with_traceback(...)
Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.

Data descriptors inherited from builtins.BaseException:
__cause__
exception cause
__context__
exception context
__dict__
__suppress_context__
__traceback__
args

 
Data
        __all__ = ('PipInstallFailed', 'VirtualEnvDoesNotExist')