udp_experimental_recorder/MumbleServer/ServerException.py
George 7b93a4fce9 feat:
--ADDED MUMBLE server cap
2026-05-21 17:14:58 +05:30

33 lines
721 B
Python

# Copyright (c) ZeroC, Inc.
# slice2py version 3.8.1
from __future__ import annotations
import IcePy
from Ice.UserException import UserException
from dataclasses import dataclass
@dataclass
class ServerException(UserException):
"""
Notes
-----
The Slice compiler generated this exception dataclass from Slice exception ``::MumbleServer::ServerException``.
"""
_ice_id = "::MumbleServer::ServerException"
_MumbleServer_ServerException_t = IcePy.defineException(
"::MumbleServer::ServerException",
ServerException,
(),
None,
())
setattr(ServerException, '_ice_type', _MumbleServer_ServerException_t)
__all__ = ["ServerException", "_MumbleServer_ServerException_t"]