diff --git a/bitwarden_license/src/Sso/Controllers/HomeController.cs b/bitwarden_license/src/Sso/Controllers/HomeController.cs index 7536a1ca43..3f70e2f448 100644 --- a/bitwarden_license/src/Sso/Controllers/HomeController.cs +++ b/bitwarden_license/src/Sso/Controllers/HomeController.cs @@ -26,6 +26,13 @@ namespace Bit.Sso.Controllers return DateTime.UtcNow; } + [HttpGet("~/exception")] + [AllowAnonymous] + public DateTime GetException() + { + throw new Exception("this is a test exception"); + } + [Route("~/Error")] [Route("~/Home/Error")] [AllowAnonymous]