fix namesapce

This commit is contained in:
2020-08-05 15:29:56 +08:00
parent f1138a5a10
commit 2abe486151
17 changed files with 117 additions and 120 deletions
@@ -1,14 +1,14 @@
using System;
namespace YYApi.Exceptions
namespace SimApi.Exceptions
{
/// <summary>
/// Api错误捕获异常
/// </summary>
public class YYApiException : Exception
public class SimApiException : Exception
{
public int Code { get; }
public YYApiException(int code, string message = "") : base(message)
public SimApiException(int code, string message = "") : base(message)
{
Code = code;
}