Files
baron-sso-sample/BaronSoftware.SSO/Exceptions/UserJsonParsingException.cs

15 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BaronSoftware.SSO
{
public class UserJsonParsingException : Exception
{
public string Raw { get; init; }
}
}