TrackManiaControl/application/core/Libs/Maniaplanet/DedicatedServer/Xmlrpc/Exception.php

17 lines
299 B
PHP
Raw Normal View History

2014-01-16 16:56:24 +01:00
<?php
/**
* ManiaPlanet dedicated server Xml-RPC client
*
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
*/
namespace Maniaplanet\DedicatedServer\Xmlrpc;
2014-02-19 12:38:38 +01:00
class Exception extends \Exception
{
const ANWSER_TOO_BIG = 1;
const REQUEST_TOO_BIG = 2;
const OTHER = 999;
}
2014-01-16 16:56:24 +01:00
?>