1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 08:43:27 +00:00
Files
server/src/Core/Exceptions/GatewayException.cs
2022-08-29 14:53:16 -04:00

9 lines
206 B
C#

namespace Bit.Core.Exceptions;
public class GatewayException : Exception
{
public GatewayException(string message, Exception innerException = null)
: base(message, innerException)
{ }
}