misc: 清除冗余的代码

Reviewed-on: PostGuard/Canon#75
Co-authored-by: Lan_G <2911328695@qq.com>
Co-committed-by: Lan_G <2911328695@qq.com>
This commit is contained in:
Lan_G
2024-05-06 00:12:57 +08:00
committed by jackfiled
parent 6e8e3885ac
commit 160fafef70
30 changed files with 11 additions and 896 deletions

View File

@@ -1,12 +0,0 @@
namespace Canon.Core.Exceptions;
/// <summary>
/// 语义分析中引发的异常
/// </summary>
public class SemanticException : Exception
{
public SemanticException() : base() { }
public SemanticException(string message) : base(message) { }
public SemanticException(string message, Exception innerException) : base(message, innerException) { }
}