mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 01:43:15 +08:00
12 lines
247 B
C#
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)
|
|||
|
|
{ }
|
|||
|
|
}
|
|||
|
|
}
|