20e82c6f4f
Co-authored-by: jackfiled <xcrenchangjun@outlook.com> Reviewed-on: PostGuard/Canon#83 Co-authored-by: ichirinko <1621543655@qq.com> Co-committed-by: ichirinko <1621543655@qq.com>
20 lines
372 B
C#
20 lines
372 B
C#
namespace Canon.Core.Exceptions;
|
|
|
|
/// <summary>
|
|
/// 编译器中的统一异常基类
|
|
/// </summary>
|
|
public class CanonException : Exception
|
|
{
|
|
public CanonException()
|
|
{
|
|
}
|
|
|
|
public CanonException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public CanonException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|