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.
 

25 lines
577 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BWP.ABCClient.B2C.OnlineRemits
{
public class OnlineRemitException : Exception
{
public string Code { get; set; }
public string DetailMessage { get; set; }
public OnlineRemitException(string code, string message, string detailMessage):base(string.Format("{0}:{1}",message,detailMessage))
{
Code = code;
DetailMessage = detailMessage;
}
public OnlineRemitException(string code, string message):this(code,message,"")
{
}
}
}