You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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; }
}
}
}