mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-22 03:36:48 +08:00
29 lines
629 B
PHP
29 lines
629 B
PHP
<?php
|
|
|
|
/***************************************************************************
|
|
*
|
|
* Copyright (c) 2012 Baidu.com, Inc. All Rights Reserved
|
|
*
|
|
**************************************************************************/
|
|
|
|
|
|
/**
|
|
* @package Baidu
|
|
* @author zhujianting(zhujianting@baidu.com)
|
|
* @version v1.0.0
|
|
*/
|
|
class BaiduException extends Exception
|
|
{
|
|
/**
|
|
* Constructor: initialize the BaiduException instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($message, $code = 0)
|
|
{
|
|
parent::__constructor($message, $code);
|
|
}
|
|
}
|
|
|
|
|
|
/* vim: set expandtab ts=4 sw=4 sts=4 tw=100: */ |