1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

remove re-throws of exceptions, which clear the stack trace (#1760)

* remove re-throws of exceptions, which clear the stack trace

* remove whitespace
This commit is contained in:
Jake Fink
2021-12-16 15:35:07 -05:00
committed by GitHub
parent 44b993ed38
commit 11aafac915
8 changed files with 19 additions and 31 deletions

View File

@ -603,7 +603,7 @@ namespace Bit.Billing.Controllers
}
else
{
throw e;
throw;
}
}
@ -698,7 +698,7 @@ namespace Bit.Billing.Controllers
}
else
{
throw e;
throw;
}
}