MCPcopy
hub / github.com/marimo-team/marimo / LoaderError

Class LoaderError

marimo/_save/loaders/loader.py:33–38  ·  view source on GitHub ↗

Base exception such that it can be raised as context for other errors.

Source from the content-addressed store, hash-verified

31
32
33class LoaderError(BaseException):
34 """Base exception such that it can be raised as context for other errors."""
35
36 def __init__(self, message: str) -> None:
37 self.message = f"{message}\n{INCONSISTENT_CACHE_BOILER_PLATE}"
38 super().__init__(message)
39
40
41class LoaderPartial:

Callers 4

restore_cacheMethod · 0.90
restore_cacheMethod · 0.90
cache_attemptMethod · 0.85
load_cacheMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…