colly
2017-07-26 c1236314ef1122e14edd46c9fe4102fc16e2ce46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
 * PhalApi_Exception_InternalServerError 服务器运行异常错误
 *
 * @package     PhalApi\Exception
 * @license     http://www.phalapi.net/license GPL 协议
 * @link        http://www.phalapi.net/
 * @author      dogstar <chanzonghuang@gmail.com> 2015-02-05
 */
 
class PhalApi_Exception_InternalServerError extends PhalApi_Exception {
 
    public function __construct($message, $code = 0) {
        parent::__construct(
            T('Interal Server Error: {message}', array('message' => $message)), 500 + $code
        );
    }
}