Source code for restpite._exceptions

[docs]class RestpiteAssertionError(AssertionError): def __init__(self, message: str) -> None: self.message = message
class EnvironFetchException(Exception): """ Raised when reading from `os.environ` finds a value but the attempted cast fails """ ...