This commit is contained in:
Mrx
2026-01-31 12:15:42 +08:00
parent a6f858dbd3
commit ff86cb6fb9
13 changed files with 47 additions and 10 deletions

View File

@@ -36,6 +36,9 @@ func ProcessYYSYK9R4Request(ctx context.Context, params []byte, deps *processors
if errors.Is(err, shujubao.ErrDatasource) {
return nil, errors.Join(processors.ErrDatasource, err)
}
if errors.Is(err, shujubao.ErrQueryEmpty) {
return nil, errors.Join(processors.ErrNotFound, err)
}
return nil, errors.Join(processors.ErrSystem, err)
}