FalconSSO/FAuth/Extensions/ApiException.cs

17 lines
406 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace FAuth.Extensions
{
/// <summary>
/// 表示请求错误,服务器无法处理
/// </summary>
public class ApiException:Exception
{
/// <summary>
/// 通过提供异常信息返回api错误异常
/// </summary>
/// <param name="msg"></param>
public ApiException(string msg) : base(msg) { }
}
}