Module graia.broadcast.exceptions

Expand source code
class OutOfMaxGenerater(Exception):
    pass


class InvaildDispatcher(Exception):
    pass


class RequirementCrashed(Exception):
    pass


class DisabledNamespace(Exception):
    pass


class ExistedNamespace(Exception):
    pass


class UnexistedNamespace(Exception):
    pass


class RegisteredEventListener(Exception):
    pass


class InvaildEventName(Exception):
    pass


class InvaildContextTarget(Exception):
    pass


class PropagationCancelled(Exception):
    pass


class ExecutionStop(Exception):
    pass

Classes

class DisabledNamespace (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class DisabledNamespace(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class ExecutionStop (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class ExecutionStop(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class ExistedNamespace (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class ExistedNamespace(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class InvaildContextTarget (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class InvaildContextTarget(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class InvaildDispatcher (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class InvaildDispatcher(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class InvaildEventName (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class InvaildEventName(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class OutOfMaxGenerater (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class OutOfMaxGenerater(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class PropagationCancelled (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class PropagationCancelled(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class RegisteredEventListener (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class RegisteredEventListener(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class RequirementCrashed (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class RequirementCrashed(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException
class UnexistedNamespace (*args, **kwargs)

Common base class for all non-exit exceptions.

Expand source code
class UnexistedNamespace(Exception):
    pass

Ancestors

  • builtins.Exception
  • builtins.BaseException