diff options
| author | Max Audron <audron@cocaine.farm> | 2025-02-26 19:03:33 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-02-26 19:03:33 +0100 |
| commit | 83884f7be8f3e5c6149d40c443603322793fa017 (patch) | |
| tree | 7b61064fb6976e6bbdda9a9cd0c7b44e96a9ecd6 /src/error | |
| parent | refactor deserialize and serializevariant trait (diff) | |
refactor variant deserialization
Diffstat (limited to 'src/error')
| -rw-r--r-- | src/error/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/error/mod.rs b/src/error/mod.rs index b415c98..7414062 100644 --- a/src/error/mod.rs +++ b/src/error/mod.rs @@ -8,6 +8,8 @@ pub enum ProtocolError { BoolOutOfRange, #[error("QVariant is not known")] UnknownVariant, + #[error("UserType is not known: {0}")] + UnknownUserType(String), #[error("wrong variant has been given")] WrongVariant, #[error("io error: {0}")] |
