10 lines
177 B
C#
10 lines
177 B
C#
using System;
|
|
|
|
namespace _0_Framework.Exceptions;
|
|
|
|
public class UnAuthorizeException:Exception
|
|
{
|
|
public UnAuthorizeException(string message) : base(message)
|
|
{
|
|
}
|
|
} |