aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/vici/python/vici/exception.py
blob: 36384e55609936ec81ab24848a6c6c7b3248d3ea (plain)
1
2
3
4
5
6
7
8
9
10
"""Exception types that may be thrown by this library."""

class DeserializationException(Exception):
    """Encountered an unexpected byte sequence or missing element type."""

class SessionException(Exception):
    """Session request exception."""

class CommandException(Exception):
    """Command result exception."""