Skip to content

SMP Exceptions

Simple Management Protocol (SMP) runtime Python Exceptions.

SMPException

Bases: Exception

Base class for SMP exceptions.

Source code in smp/exceptions.py
class SMPException(Exception):
    """Base class for SMP exceptions."""

SMPDecodeError

Bases: SMPException

An error occurred while decoding an SMP message.

Source code in smp/exceptions.py
class SMPDecodeError(SMPException):
    """An error occurred while decoding an SMP message."""

SMPBadStartDelimiter

Bases: SMPDecodeError

The start delimiter of the SMP message is invalid.

Source code in smp/exceptions.py
class SMPBadStartDelimiter(SMPDecodeError):
    """The start delimiter of the SMP message is invalid."""

SMPBadContinueDelimiter

Bases: SMPDecodeError

The continue delimiter of the SMP message is invalid.

Source code in smp/exceptions.py
class SMPBadContinueDelimiter(SMPDecodeError):
    """The continue delimiter of the SMP message is invalid."""

SMPBadCRC

Bases: SMPDecodeError

The CRC of the SMP message failed.

Source code in smp/exceptions.py
class SMPBadCRC(SMPDecodeError):
    """The CRC of the SMP message failed."""

SMPDeserializationError

Bases: SMPException

Failed to deserialize an SMP message.

Source code in smp/exceptions.py
class SMPDeserializationError(SMPException):
    """Failed to deserialize an SMP message."""

SMPMismatchedGroupId

Bases: SMPDeserializationError

Group ID in the SMP message does not match the expected group.

Source code in smp/exceptions.py
class SMPMismatchedGroupId(SMPDeserializationError):
    """Group ID in the SMP message does not match the expected group."""

SMPMalformed

Bases: SMPException

The SMP message is malformed.

Source code in smp/exceptions.py
class SMPMalformed(SMPException):
    """The SMP message is malformed."""