Module jumpscale.data.treemanager.exceptions
Expand source code
from jumpscale.core.exceptions import JSException
class NameExistsError(JSException):
pass
class EmptyNameError(JSException):
pass
class RootRemoveError(JSException):
pass
Classes
class EmptyNameError (message, category=None, level=None, context=None)
-
Common base class for all non-exit exceptions.
Expand source code
class EmptyNameError(JSException): pass
Ancestors
- JSException
- builtins.Exception
- builtins.BaseException
class NameExistsError (message, category=None, level=None, context=None)
-
Common base class for all non-exit exceptions.
Expand source code
class NameExistsError(JSException): pass
Ancestors
- JSException
- builtins.Exception
- builtins.BaseException
class RootRemoveError (message, category=None, level=None, context=None)
-
Common base class for all non-exit exceptions.
Expand source code
class RootRemoveError(JSException): pass
Ancestors
- JSException
- builtins.Exception
- builtins.BaseException