5eb7637f8cb694c4240a70784d7d285f905beca8
[yaffs-website] / vendor / lsolesen / pel / src / PelJpegInvalidMarkerException.php
1 <?php
2 /*
3  * PEL: PHP Exif Library.
4  * A library with support for reading and
5  * writing all Exif headers in JPEG and TIFF images using PHP.
6  *
7  * Copyright (C) 2004, 2005, 2006, 2007 Martin Geisler.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program in the file COPYING; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22  * Boston, MA 02110-1301 USA
23  */
24 namespace lsolesen\pel;
25
26 /**
27  * Exception thrown when an invalid marker is found.
28  *
29  * This exception is thrown when PEL expects to find a {@link
30  * PelJpegMarker} and instead finds a byte that isn't a known marker.
31  *
32  * @author Martin Geisler <mgeisler@users.sourceforge.net>
33  * @license http://www.gnu.org/licenses/gpl.html GNU General Public License (GPL)
34  * @package PEL
35  * @subpackage Exception
36  */
37 class PelJpegInvalidMarkerException extends PelException
38 {
39
40     /**
41      * Construct a new invalid marker exception.
42      * The exception will contain a message describing the error,
43      * including the byte found and the offset of the offending byte.
44      *
45      * @param int $marker
46      *            the byte found.
47      *
48      * @param int $offset
49      *            the offset in the data.
50      */
51     public function __construct($marker, $offset)
52     {
53         parent::__construct('Invalid marker found at offset %d: 0x%2X', $offset, $marker);
54     }
55 }