pyIPCMI.Base.Exceptions.py

Exceptions

  • ExceptionBase: Base exception derived from Exception for all
  • EnvironmentException: EnvironmentException is raised when an expected environment variable is
  • PlatformNotSupportedException: PlatformNotSupportedException is raise if the platform is not supported
  • NotConfiguredException: NotConfiguredException is raise if pyIPCMI or the requested tool chain
  • SkipableException: Base class for all skipable exceptions.
  • CommonException: Base exception derived from Exception for all
  • SkipableCommonException: SkipableCommonException is a CommonException, which can be
exception pyIPCMI.Base.Exceptions.ExceptionBase(message='')[source]

Base exception derived from Exception for all custom exceptions in pyIPCMI.

Inheritance

Inheritance diagram of ExceptionBase

Members

with_traceback(tb)[source]

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

args
exception pyIPCMI.Base.Exceptions.EnvironmentException(message='')[source]

EnvironmentException is raised when an expected environment variable is missing for pyIPCMI.

Inheritance

Inheritance diagram of EnvironmentException

Members

args
with_traceback(tb)

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pyIPCMI.Base.Exceptions.PlatformNotSupportedException(message='')[source]

PlatformNotSupportedException is raise if the platform is not supported by pyIPCMI, or the selected tool flow is not supported on the host system by pyIPCMI.

Inheritance

Inheritance diagram of PlatformNotSupportedException

Members

args
with_traceback(tb)

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pyIPCMI.Base.Exceptions.NotConfiguredException(message='')[source]

NotConfiguredException is raise if pyIPCMI or the requested tool chain setting is not configured in pyIPCMI.

Inheritance

Inheritance diagram of NotConfiguredException

Members

args
with_traceback(tb)

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pyIPCMI.Base.Exceptions.SkipableException(message='')[source]

Base class for all skipable exceptions.

Inheritance

Inheritance diagram of SkipableException

Members

args
with_traceback(tb)

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pyIPCMI.Base.Exceptions.CommonException(message='')[source]

Inheritance

Inheritance diagram of CommonException

Members

args
with_traceback(tb)

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pyIPCMI.Base.Exceptions.SkipableCommonException(message='')[source]

SkipableCommonException is a CommonException, which can be skipped.

Inheritance

Inheritance diagram of SkipableCommonException

Members

args
with_traceback(tb)

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.