An AlertError is a TLS alert. When using a QUIC transport, QUICConn methods will return an error which wraps AlertError rather than sending a TLS alert.
| 11 | // When using a QUIC transport, QUICConn methods will return an error |
| 12 | // which wraps AlertError rather than sending a TLS alert. |
| 13 | type AlertError uint8 |
| 14 | |
| 15 | func (e AlertError) Error() string { |
| 16 | return alert(e).String() |
no outgoing calls
no test coverage detected