NestJS - Authentication
Given the following code snippet, what will be the output if the token is expired?
try {
const payload = jwtService.verify(token);
return 'Valid Token';
} catch (e) {
return 'Invalid Token';
}