cfbadaa57d1895cc0b925916c0235a47135801dd
[yaffs-website] / vendor / lsolesen / pel / src / PelUnexpectedFormatException.php
1 <?php
2
3 /**
4  * PEL: PHP Exif Library.
5  * A library with support for reading and
6  * writing all Exif headers in JPEG and TIFF images using PHP.
7  *
8  * Copyright (C) 2004, 2005, 2006 Martin Geisler.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program in the file COPYING; if not, write to the
22  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23  * Boston, MA 02110-1301 USA
24  */
25 namespace lsolesen\pel;
26
27 /**
28  * Classes for dealing with Exif entries.
29  *
30  * This file defines two exception classes and the abstract class
31  * {@link PelEntry} which provides the basic methods that all Exif
32  * entries will have. All Exif entries will be represented by
33  * descendants of the {@link PelEntry} class --- the class itself is
34  * abstract and so it cannot be instantiated.
35  *
36  * @author Martin Geisler <mgeisler@users.sourceforge.net>
37  * @license http://www.gnu.org/licenses/gpl.html GNU General Public
38  *          License (GPL)
39  * @package PEL
40  */
41
42 /**
43  * Exception indicating that an unexpected format was found.
44  *
45  * The documentation for each tag in {@link PelTag} will detail any
46  * constrains.
47  *
48  * @author Martin Geisler <mgeisler@users.sourceforge.net>
49  * @package PEL
50  * @subpackage Exception
51  */
52 class PelUnexpectedFormatException extends PelEntryException
53 {
54
55     /**
56      * Construct a new exception indicating an invalid format.
57      *
58      * @param int $type
59      *            the type of IFD.
60      *
61      * @param int $tag
62      *            the tag for which the violation was found as defined in {@link PelTag}
63      *
64      * @param int $found
65      *            the format found as defined in {@link PelFormat}
66      *
67      * @param int $expected
68      *            the expected as defined in {@link PelFormat}
69      */
70     public function __construct($type, $tag, $found, $expected)
71     {
72         parent::__construct(
73             'Unexpected format found for %s tag: PelFormat::%s. Expected PelFormat::%s instead.',
74             PelTag::getName($type, $tag),
75             strtoupper(PelFormat::getName($found)),
76             strtoupper(PelFormat::getName($expected)));
77         $this->tag = $tag;
78         $this->type = $type;
79     }
80 }