Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / lsolesen / pel / src / PelOverflowException.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 cast when numbers overflow.
44  *
45  * @author Martin Geisler <mgeisler@users.sourceforge.net>
46  * @package PEL
47  * @subpackage Exception
48  */
49 class PelOverflowException extends PelException
50 {
51
52     /**
53      * Construct a new overflow exception.
54      *
55      * @param int $v
56      *            the value that is out of range.
57      *
58      * @param int $min
59      *            the minimum allowed value.
60      *
61      * @param int $max
62      *            the maximum allowed value.
63      */
64     public function __construct($v, $min, $max)
65     {
66         parent::__construct('Value %.0f out of range [%.0f, %.0f]', $v, $min, $max);
67     }
68 }