VBANCMDConnectionError now subclasses VBANCMDError

This commit is contained in:
onyx-and-iris 2023-08-02 15:45:25 +01:00
parent d41ee1a12a
commit 7e09a0d321
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "vban-cmd"
version = "2.3.3"
version = "2.4.0"
description = "Python interface for the VBAN RT Packet Service (Sendtext)"
authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT"

View File

@ -1,6 +1,6 @@
class VBANCMDError(Exception):
"""Exception raised when general errors occur"""
"""Base VBANCMD Exception class. Raised when general errors occur"""
class VBANCMDConnectionError(Exception):
class VBANCMDConnectionError(VBANCMDError):
"""Exception raised when connection/timeout errors occur"""