namespace Nwc.XmlRpc
{
using System;
/// Standard XML-RPC error codes.
public class XmlRpcErrorCodes
{
// -32400 ---> system error
///
public const int TRANSPORT_ERROR = -32300;
///
public const String TRANSPORT_ERROR_MSG = "Transport Layer Error";
}
}