File: exceptions.py

package info (click to toggle)
python-agent-py 0.0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 397; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Exceptions for Agent DVR."""


class AgentError(Exception):
    """Generic Agent DVR exception."""

    pass


class AgentConnectionError(AgentError):
    """Agent DVR connection exception."""

    pass