File: exceptions.py

package info (click to toggle)
python-sanix 1.0.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: python: 94; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 203 bytes parent folder | download
1
2
3
4
5
6
7
8
"""Sanix exceptions."""

class SanixException(Exception):
    """Raised when Sanix API ended with error."""


class SanixInvalidAuthException(SanixException):
    """Sanix API Invalid Auth exception."""