blob: ddfa86586de55319efcfed9eba154616e818bfd7 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?php
2
3/******************************************************************************
4 * Copyright (c) 2010 Jevon Wright and others.
5 * All rights reserved. This program and the accompanying materials
6 * are made available under the terms of the Eclipse Public License v1.0
7 * which accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * or
11 *
12 * LGPL which is available at http://www.gnu.org/licenses/lgpl.html
13 *
14 *
15 * Contributors:
16 * Jevon Wright - initial API and implementation
17 ****************************************************************************/
18
19namespace Html2Text;
20
21class Html2TextException extends \Exception {
22 var $more_info;
23
24 public function __construct($message = "", $more_info = "") {
25 parent::__construct($message);
26 $this->more_info = $more_info;
27 }
28}