Add ServerFnError error variant

This commit is contained in:
2026-06-21 13:51:29 -04:00
parent f159e12400
commit 9fd716c752

View File

@@ -261,6 +261,9 @@ pub enum ErrorType {
#[error("{0}")]
Error(String),
#[error("Server function error: {0}")]
ServerFnError(ServerFnError),
}
impl From<ErrorType> for Error {