Welcome to mirror list, hosted at ThFree Co, Russian Federation.

url_exception.php « exceptions « src « Url « ezcomponents « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 841232f11337f00c518d652eda39aa4938f6eb39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
 * File containing the ezcUrlException class
 *
 * @package Mail
 * @version 1.1
 * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 */

/**
 * ezcUrlExceptions are thrown when an exceptional state
 * occures in the Url package.
 *
 * @package Url
 * @version 1.1
 */
class ezcUrlException extends ezcBaseException
{
    /**
     * Constructs a new ezcUrlException with error message $message.
     *
     * @param string $message
     */
    public function __construct( $message )
    {
        parent::__construct( $message );
    }
}
?>