Exception raised when a secret cannot be found or parsed in the secrets.toml file.
| 608 | |
| 609 | |
| 610 | class StreamlitSecretNotFoundError(LocalizableStreamlitException, FileNotFoundError): |
| 611 | """Exception raised when a secret cannot be found or parsed in the secrets.toml file.""" |
| 612 | |
| 613 | def __init__(self, message: str) -> None: |
| 614 | super().__init__(message) |
| 615 | |
| 616 | |
| 617 | class StreamlitInvalidWidthError(LocalizableStreamlitException): |
no outgoing calls
no test coverage detected
searching dependent graphs…