1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 19:23:45 +00:00
Files
server/src/Core/Exceptions/GatewayException.cs
2017-07-28 12:09:12 -04:00

12 lines
247 B
C#

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