Files
server/src/Core/Exceptions/GatewayException.cs

12 lines
247 B
C#
Raw Normal View History

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