Skip to content

ding.interaction.exception

ding.interaction.exception

Full Source Code

../ding/interaction/exception/__init__.py

1from .base import ResponseException 2from .master import MasterErrorCode, get_master_exception_by_error, MasterResponseException, MasterSuccess, \ 3 MasterChannelInvalid, MasterChannelNotGiven, MasterMasterTokenInvalid, MasterMasterTokenNotGiven, \ 4 MasterSelfTokenInvalid, MasterSelfTokenNotGiven, MasterSlaveTokenInvalid, MasterSlaveTokenNotGiven, \ 5 MasterSystemShuttingDown, MasterTaskDataInvalid 6from .slave import SlaveErrorCode, get_slave_exception_by_error, SlaveResponseException, SlaveSuccess, \ 7 SlaveChannelInvalid, SlaveChannelNotFound, SlaveSelfTokenInvalid, SlaveTaskAlreadyExist, SlaveTaskRefused, \ 8 SlaveMasterTokenInvalid, SlaveMasterTokenNotFound, SlaveSelfTokenNotFound, SlaveSlaveAlreadyConnected, \ 9 SlaveSlaveConnectionRefused, SlaveSlaveDisconnectionRefused, SlaveSlaveNotConnected, SlaveSystemShuttingDown