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

__init__(message='')[source]

Exception initializer

Parameters:message (str) – The exception message.
__str__()[source]

Returns the exception’s message text.

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

__init__(message='')

Exception initializer

Parameters:message (str) – The exception message.
__str__()

Returns the exception’s message text.

args
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

__init__(message='')

Exception initializer

Parameters:message (str) – The exception message.
__str__()

Returns the exception’s message text.

args
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

__init__(message='')

Exception initializer

Parameters:message (str) – The exception message.
__str__()

Returns the exception’s message text.

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

Base class for all skipable exceptions.

Inheritance

Inheritance diagram of SkipableException

Members

__init__(message='')

Exception initializer

Parameters:message (str) – The exception message.
__str__()

Returns the exception’s message text.

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

Inheritance

Inheritance diagram of CommonException

Members

__init__(message='')

Exception initializer

Parameters:message (str) – The exception message.
__str__()

Returns the exception’s message text.

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

SkipableCommonException is a CommonException, which can be skipped.

Inheritance

Inheritance diagram of SkipableCommonException

Members

__init__(message='')

Exception initializer

Parameters:message (str) – The exception message.
__str__()

Returns the exception’s message text.

args