Skip to content

declearn.messaging.Error

Bases: Message

Error message container, used to convey exceptions between nodes.

Source code in declearn/messaging/_base.py
61
62
63
64
65
66
67
@dataclasses.dataclass
class Error(Message):
    """Error message container, used to convey exceptions between nodes."""

    typekey = "error"

    message: str