blob: 7ef239c4d2173ee9e4d2c3391868049a563b5ca9 [file] [log] [blame]
using System;
namespace DotPulsar.Exceptions
{
public sealed class AuthenticationException : DotPulsarException
{
public AuthenticationException(string message) : base(message) { }
public AuthenticationException(string message, Exception innerException) : base(message, innerException) { }
}
}