add the KEY_UPDATE_ERROR error code

This commit is contained in:
Marten Seemann
2020-09-10 18:14:04 +07:00
parent c5a132f158
commit 10797cfc79
2 changed files with 5 additions and 0 deletions

View File

@@ -209,6 +209,8 @@ func (e transportError) String() string {
return "application_error"
case qerr.CryptoBufferExceeded:
return "crypto_buffer_exceeded"
case qerr.KeyUpdateError:
return "key_update_error"
default:
return ""
}