blob: 7dee344429d1743ec838e902e123703504b9a918 [file] [log] [blame]
namespace DotPulsar.Internal.Exceptions;
using System;
public class TokenFactoryFailedException : Exception
{
public TokenFactoryFailedException(Exception innerException) : base("Exception when trying to fetch token from token factory", innerException)
{
}
}