Files
VestaCP/web/vesta/core/utils/Message.class.php
Serghey Rodin 641ed97fdd export from svn
2011-06-14 00:22:25 +03:00

24 lines
548 B
PHP

<?php
/**
* Messages container
*
* Contains messages, that are used in the code.
*
* @author vesta, http://vestacp.com/
* @copyright vesta 2010
*/
class Message {
const REQUEST_INVALID = 'Malformed request';
const GENERAL_ERROR = 'General protection fault';
const REQUEST_IS_NOT_POST = 'Request is not POST';
const METHOD_NOT_EXIST = 'Message not exist';
const INVALID_METHOD = 'Method Invalid';
const SYSTEM_ERROR = 'System Error';
const PROTECTION_ERROR = 'Protection error';
const ERROR = 'error';
}
?>