1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-22 05:25:10 -05:00
bitwarden/src/Core/Exceptions/GatewayException.cs
2022-08-29 16:06:55 -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)
{ }
}