| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package dompdf |
| 4 |
* @link https://github.com/dompdf/dompdf |
| 5 |
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License |
| 6 |
*/ |
| 7 |
namespace Dompdf; |
| 8 |
|
| 9 |
/** |
| 10 |
* Standard exception thrown by DOMPDF classes |
| 11 |
* |
| 12 |
* @package dompdf |
| 13 |
*/ |
| 14 |
class Exception extends \Exception |
| 15 |
{ |
| 16 |
|
| 17 |
/** |
| 18 |
* Class constructor |
| 19 |
* |
| 20 |
* @param string $message Error message |
| 21 |
* @param int $code Error code |
| 22 |
*/ |
| 23 |
public function __construct($message = null, $code = 0) |
| 24 |
{ |
| 25 |
parent::__construct($message, $code); |
| 26 |
} |
| 27 |
} |
| 28 |
|