You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
SOP/sop-sdk/sdk-csharp/SDKCSharp/Common/SopException.cs

51 lines
1.1 KiB

using System;
using System.Runtime.Serialization;
namespace SDKCSharp.Common
{
/// <summary>
/// AOP客户端异常。
/// </summary>
public class SopException : Exception
{
private string errorCode;
private string errorMsg;
public SopException()
: base()
{
}
public SopException(string message)
: base(message)
{
}
protected SopException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
public SopException(string message, Exception innerException)
: base(message, innerException)
{
}
public SopException(string errorCode, string errorMsg)
: base(errorCode + ":" + errorMsg)
{
this.errorCode = errorCode;
this.errorMsg = errorMsg;
}
public string ErrorCode
{
get { return this.errorCode; }
}
public string ErrorMsg
{
get { return this.errorMsg; }
}
}
}