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

36 lines
1.1 KiB
Python

# Copyright (c) ZeroC, Inc.
# slice2py version 3.8.1
from __future__ import annotations
import IcePy
from MumbleServer.ServerException import ServerException
from MumbleServer.ServerException import _MumbleServer_ServerException_t
from dataclasses import dataclass
@dataclass
class InvalidChannelException(ServerException):
"""
This is thrown when you specify an invalid channel id. This may happen if the channel was removed by another provess. It can also be thrown if you try to add an invalid channel.
Notes
-----
The Slice compiler generated this exception dataclass from Slice exception ``::MumbleServer::InvalidChannelException``.
"""
_ice_id = "::MumbleServer::InvalidChannelException"
_MumbleServer_InvalidChannelException_t = IcePy.defineException(
"::MumbleServer::InvalidChannelException",
InvalidChannelException,
(),
_MumbleServer_ServerException_t,
())
setattr(InvalidChannelException, '_ice_type', _MumbleServer_InvalidChannelException_t)
__all__ = ["InvalidChannelException", "_MumbleServer_InvalidChannelException_t"]