mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-30 18:52:50 +08:00
13 lines
281 B
C#
13 lines
281 B
C#
using Ocelot.Errors;
|
|
|
|
namespace Ocelot.Authorisation
|
|
{
|
|
public class ClaimValueNotAuthorisedError : Error
|
|
{
|
|
public ClaimValueNotAuthorisedError(string message)
|
|
: base(message, OcelotErrorCode.ClaimValueNotAuthorisedError)
|
|
{
|
|
}
|
|
}
|
|
}
|