16 lines
283 B
C#
16 lines
283 B
C#
namespace TightWiki.Exceptions
|
|
{
|
|
public class UnauthorizedException : Exception
|
|
{
|
|
public UnauthorizedException()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
public UnauthorizedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|