From 8644ba2ea292ef2aa3d49976f4f3916b7ecde938 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 2 Jan 2026 02:21:29 +0800 Subject: Add ReferenceSheetNotAllowed variant to TcpTargetError --- crates/utils/tcp_connection/src/error.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crates/utils/tcp_connection') diff --git a/crates/utils/tcp_connection/src/error.rs b/crates/utils/tcp_connection/src/error.rs index 3667a59..32d06cc 100644 --- a/crates/utils/tcp_connection/src/error.rs +++ b/crates/utils/tcp_connection/src/error.rs @@ -6,6 +6,9 @@ pub enum TcpTargetError { #[error("Authentication failed: {0}")] Authentication(String), + #[error("Reference sheet not allowed: {0}")] + ReferenceSheetNotAllowed(String), + #[error("Cryptographic error: {0}")] Crypto(String), -- cgit