MoyaApiException.cs
390 Bytes
using System;
using System.Net;
namespace MoyaAdminLib
{
public class MoyaApiException : WebException
{
public MoyaApiException()
{
}
public MoyaApiException(string message) : base(message)
{
}
public MoyaApiException(string message, Exception innerException) : base(message, innerException)
{
}
}
}