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): passAncestors
- 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): passAncestors
- 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): passAncestors
- JSException
- builtins.Exception
- builtins.BaseException