mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-12-13 18:35:38 +08:00
15 lines
303 B
C#
15 lines
303 B
C#
using System;
|
|
|
|
namespace RevokeMsgPatcher
|
|
{
|
|
class BusinessException : ApplicationException
|
|
{
|
|
public string ErrorCode { get; protected set; }
|
|
|
|
public BusinessException(string errcode, string message) : base(message)
|
|
{
|
|
ErrorCode = errcode;
|
|
}
|
|
}
|
|
}
|