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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
206 B
C#
Raw Normal View History

2022-08-29 16:06:55 -04:00
namespace Bit.Core.Exceptions;
public class GatewayException : Exception
{
2022-08-29 16:06:55 -04:00
public GatewayException(string message, Exception innerException = null)
: base(message, innerException)
{ }
}