Unverified Commit e8e0a01c authored by AMIT KUMAR's avatar AMIT KUMAR Committed by GitHub
Browse files

Issue #SB-22288 feat: Fixed Error code issue for search API (#1060)

Showing with 5 additions and 0 deletions
+5 -0
......@@ -324,6 +324,11 @@ public class BaseController extends Controller {
+ e.getMessage(),
e);
if (e instanceof ProjectCommonException) {
ProjectCommonException exception =
new ProjectCommonException(
(ProjectCommonException) e,
ActorOperations.getOperationCodeByActorOperation(request.getOperation()));
e = exception;
printExitLogOnFailure(request, (ProjectCommonException) e);
} else {
printExitLogOnFailure(request, null);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment