From 2e3a506c81bc03345a028a8a749b5b978119d548 Mon Sep 17 00:00:00 2001 From: Kallesh B S Date: Mon, 29 Sep 2025 16:38:09 +0530 Subject: [PATCH] bug fix 10 --- src/guards/roles.guard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guards/roles.guard.ts b/src/guards/roles.guard.ts index 83ed376..17b1e6e 100644 --- a/src/guards/roles.guard.ts +++ b/src/guards/roles.guard.ts @@ -46,7 +46,7 @@ export class RolesGuard implements CanActivate { return true; } catch (err: any) { - throw new UnauthorizedException('Authentication Failed'); + throw new UnauthorizedException('Unauthorized : Please Request Access for this Resource'); } } }