File: error.py

package info (click to toggle)
python-voip-utils 0.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 640 kB
  • sloc: python: 1,976; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 170 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
"""Errors for VoIP integration."""


class VoipError(Exception):
    """Voice over IP error."""


class RtpError(VoipError):
    """Realtime Transport Protocol error."""