16 lines
440 B
C#
16 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BaronSoftware.SSO.Exceptions
|
|
{
|
|
internal class InvalidUserException : Exception
|
|
{
|
|
public InvalidUserException() { }
|
|
public InvalidUserException(string message) : base(message) { }
|
|
public InvalidUserException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
}
|