Base class for all actionable bundler errors. Carrying a clean message lets the CLI layer print a single, user-facing line on stderr and exit non-zero without leaking a traceback (Constitution Principle V — explicit, actionable errors).
| 11 | |
| 12 | |
| 13 | class BundlerError(Exception): |
| 14 | """Base class for all actionable bundler errors. |
| 15 | |
| 16 | Carrying a clean message lets the CLI layer print a single, user-facing line |
| 17 | on stderr and exit non-zero without leaking a traceback (Constitution |
| 18 | Principle V — explicit, actionable errors). |
| 19 | """ |
no outgoing calls
no test coverage detected