Raised when target validation fails.
| 24 | |
| 25 | |
| 26 | class InvalidTargetError(SecuritySuiteException): |
| 27 | """Raised when target validation fails.""" |
| 28 | |
| 29 | def __init__(self, target: str): |
| 30 | self.target = target |
| 31 | super().__init__(f"Invalid target: {target}") |
| 32 | |
| 33 | |
| 34 | class NetworkError(SecuritySuiteException): |
no outgoing calls