|
|
- builtins.Exception(builtins.BaseException)
-
- ImportTimeError(builtins.Exception)
class ImportTimeError(builtins.Exception) |
|
ImportTimeError(filename: Optional[str], exc_info: Tuple[Any, Any, Any]) -> None
Errors that occurred while trying to import something to document it. |
|
- Method resolution order:
- ImportTimeError
- builtins.Exception
- builtins.BaseException
- builtins.object
Methods defined here:
- __init__(self, filename: Optional[str], exc_info: Tuple[Any, Any, Any]) -> None
- Set up
- __str__(self) -> str
- For display
Static methods inherited from builtins.Exception:
- __new__(*args, **kwargs) from builtins.type
- Create and return a new object. See help(type) for accurate signature.
Methods inherited from builtins.BaseException:
- __delattr__(self, name, /)
- Implement delattr(self, name).
- __getattribute__(self, name, /)
- Return getattr(self, name).
- __reduce__(...)
- __repr__(self, /)
- Return repr(self).
- __setattr__(self, name, value, /)
- Implement setattr(self, name, value).
- __setstate__(...)
- with_traceback(...)
- Exception.with_traceback(tb) --
set self.__traceback__ to tb and return self.
Data descriptors inherited from builtins.BaseException:
- __cause__
- exception cause
- __context__
- exception context
- __suppress_context__
- __traceback__
- args
|
|