1"""SSRF protection exceptions."""234class SSRFBlockedError(Exception):5 """Raised when a request is blocked by SSRF protection policy."""67 def __init__(self, reason: str) -> None:8 self.reason = reason9 super().__init__(f"SSRF blocked: {reason}")
Findings
✓ No findings reported for this file.