add forwarder error intance

This commit is contained in:
rafiarrafif
2025-05-27 02:47:29 +07:00
parent ee8e8d08db
commit a7c984b316
8 changed files with 51 additions and 18 deletions

View File

@ -8,6 +8,6 @@ export const checkUserSessionInCacheRepo = async (redisKeyName: string) => {
return userSessionInRedis;
} catch (error) {
throw new AppError(500, "Server cache error");
throw new AppError(500, "Server cache error", error);
}
};