| 105 | const char *msg = nullptr; |
| 106 | |
| 107 | uint16_t |
| 108 | get_code() |
| 109 | { |
| 110 | return static_cast<uint16_t>(code); |
| 111 | } |
| 112 | |
| 113 | Http3Error() : code(Http3ErrorCode::H3_NO_ERROR){}; |
| 114 | Http3Error(const Http3ErrorClass error_cls, const Http3ErrorCode error_code, const char *error_msg = nullptr) |
no outgoing calls
no test coverage detected