ln.identities/AuthenticationNeeded.cs

11 lines
165 B
C#
Raw Permalink Normal View History

2019-11-24 15:06:17 +01:00
using System;
namespace ln.identities
{
public class AuthenticationNeeded : Exception
{
public AuthenticationNeeded()
{
}
}
}