mirror of
https://github.com/bitwarden/server
synced 2025-12-22 19:23:45 +00: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)
|
|
{ }
|
|
}
|
|
}
|