mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 05:25:10 -05:00
9 lines
206 B
C#
9 lines
206 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
public class GatewayException : Exception
|
|
{
|
|
public GatewayException(string message, Exception innerException = null)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|