Application-level error messages
These constants provide standard error messages for application-specific errors that are not part of SaTokenError.
use sa_token_core::error::messages; let err_msg = messages::INVALID_CREDENTIALS; return Err(ApiError::Unauthorized(err_msg.to_string()));