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.
 

20 lines
362 B

using System;
namespace BWP.ABCClient.Exceptions
{
public class ResponseException : Exception
{
private readonly string _errorCode;
public ResponseException(string errorCode, string message)
: base(errorCode + ":" + message)
{
_errorCode = errorCode;
}
public string ErrorCode
{
get { return _errorCode; }
}
}
}