Module nepse_tools.exceptions

Expand source code
from typing import Any


class NepseToolsBaseException(Exception):
    def __init__(self, *args, error_data: Any = None):
        super(NepseToolsBaseException, self).__init__(*args)
        self.error_data = error_data

Classes

class NepseToolsBaseException (*args, error_data: Any = None)

Common base class for all non-exit exceptions.

Expand source code
class NepseToolsBaseException(Exception):
    def __init__(self, *args, error_data: Any = None):
        super(NepseToolsBaseException, self).__init__(*args)
        self.error_data = error_data

Ancestors

  • builtins.Exception
  • builtins.BaseException

Subclasses