Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
MetadataExtractionException
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2014 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 */
21
22namespace oat\taoQtiItem\model\qti\metadata;
23
24use Exception;
25
26/**
27 * This Exception class must be thrown in reaction to an error occuring
28 * during a metadata extraction process.
29 *
30 * @author Jérôme Bogaerts <jerome@taotesting.com>
31 *
32 */
33class MetadataExtractionException extends Exception
34{
35    /**
36     * Create a new MetadataExtractionException object.
37     *
38     * @param string $message A human readable message explaining the error.
39     * @param integer $code (optional) A machine understandable error code.
40     *                      This should be used by very specific implementations only.
41     * @param Exception $previous A previous caught exception that led to this one.
42     */
43    public function __construct($message, $code = 0, Exception $previous = null)
44    {
45        parent::__construct($message, $code, $previous);
46    }
47}