Check and raise InsecureTransportError with the given URI.
(cls, uri)
| 60 | |
| 61 | @classmethod |
| 62 | def check(cls, uri): |
| 63 | """Check and raise InsecureTransportError with the given URI.""" |
| 64 | if not is_secure_transport(uri): |
| 65 | raise cls() |
| 66 | |
| 67 | |
| 68 | class InvalidRequestError(OAuth2Error): |
no test coverage detected