Files
libremetaverse/old/libsecondlife-cs/XmlRpcCS/XmlRpcErrorCodes.cs
John Hurliman 2cf03f4257 Moving the trunk to the directory "old"
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@276 52acb1d6-8a22-11de-b505-999d5b087335
2006-10-14 04:10:33 +00:00

20 lines
381 B
C#

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