forget to add fatal except

This commit is contained in:
kremsy 2014-02-20 00:10:56 +01:00 committed by Steffen Schröder
parent c37c1d9957
commit dd7fb91048

View File

@ -0,0 +1,16 @@
<?php
/**
* @version $Revision: $:
* @author $Author: $:
* @date $Date: $:
*/
namespace Maniaplanet\DedicatedServer\Xmlrpc;
class FatalException extends Exception
{
const NOT_INITIALIZED = 1;
const INTERRUPTED = 2;
const OTHER = 999;
}
?>