Base.Exceptions¶
Exceptions
ExceptionBase
: Base exception derived fromException
for allEnvironmentException
:EnvironmentException
is raised when an expected environment variable isPlatformNotSupportedException
:PlatformNotSupportedException
is raise if the platform is not supportedNotConfiguredException
:NotConfiguredException
is raise if PoC or the requested tool chainSkipableException
: Base class for all skipable exceptions.CommonException
: Base exception derived fromException
for allSkipableCommonException
:SkipableCommonException
is aCommonException
, which can be
-
exception
Base.Exceptions.
ExceptionBase
(message='')[source]¶ Base exception derived from
Exception
for all custom exceptions in PoC.Inheritance
Members
-
__init__
(message='')[source]¶ Exception initializer
Parameters: message (str) – The exception message.
-
args
¶
-
-
exception
Base.Exceptions.
EnvironmentException
(message='')[source]¶ EnvironmentException
is raised when an expected environment variable is missing for PoC.Inheritance
Members
-
__str__
()¶ Returns the exception’s message text.
-
args
¶
-
-
exception
Base.Exceptions.
PlatformNotSupportedException
(message='')[source]¶ PlatformNotSupportedException
is raise if the platform is not supported by PoC, or the selected tool flow is not supported on the host system by PoC.Inheritance
Members
-
__str__
()¶ Returns the exception’s message text.
-
args
¶
-
-
exception
Base.Exceptions.
NotConfiguredException
(message='')[source]¶ NotConfiguredException
is raise if PoC or the requested tool chain setting is not configured in PoC.Inheritance
Members
-
__str__
()¶ Returns the exception’s message text.
-
args
¶
-
-
exception
Base.Exceptions.
SkipableException
(message='')[source]¶ Base class for all skipable exceptions.
Inheritance
Members
-
__str__
()¶ Returns the exception’s message text.
-
args
¶
-
-
exception
Base.Exceptions.
CommonException
(message='')[source]¶ Inheritance
Members
-
__str__
()¶ Returns the exception’s message text.
-
args
¶
-
-
exception
Base.Exceptions.
SkipableCommonException
(message='')[source]¶ SkipableCommonException
is aCommonException
, which can be skipped.Inheritance
Members
-
__str__
()¶ Returns the exception’s message text.
-
args
¶
-