using System;
|
|
|
|
namespace BWP.ABCClient.Exceptions
|
|
{
|
|
public class HttpException : Exception
|
|
{
|
|
public HttpException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|