mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-04 23:39:33 +08:00
23 lines
349 B
C#
23 lines
349 B
C#
|
|
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; }
|
|
}
|
|
|
|
}
|
|
}
|