mirror of
https://github.com/bitwarden/server
synced 2026-01-12 05:24:15 +00:00
* Enable NRT for Core/Jobs files * Enable NRT for Core/HostedServices files * Enable NRT for Core/Exceptions files * Enable NRT for Core/NotificationHub files --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
11 lines
225 B
C#
11 lines
225 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
#nullable enable
|
|
|
|
public class GatewayException : Exception
|
|
{
|
|
public GatewayException(string message, Exception? innerException = null)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|