identificationOfCultivatedL.../Infrastructure/CommonException.cs

23 lines
349 B
C#
Raw Normal View History

2026-02-04 10:30:49 +08:00

using System;
namespace Infrastructure
{
public class CommonException : Exception
{
private int _code;
public CommonException(string message, int code)
: base(message)
{
this._code = code;
}
public int Code
{
get { return _code; }
}
}
}