root/trunk/common/mvblog_inifilereaderexception.php

Revision 776, 0.9 KB (checked in by michiel, 9 months ago)

update copyright year.

Closes #180

Line 
1<?php
2/**
3 * MvBlog -- An open source no-nosense blogtool
4 *
5 * Copyright (C) 2005-2008, Michiel van Baak
6 * Michiel van Baak <mvanbaak@users.sourceforge.net>
7 *
8 * See http://www.mvblog.org for more information on MvBlog.
9 * That page also provides Bugtrackers, Filereleases etc.
10 *
11 * This program is free software, distributed under the terms of
12 * the GNU General Public License Version 2. See the LICENSE file
13 * at the top of the source tree.
14 *
15 * @package MvBlog
16 * @author Ferry Boender
17 * @version %%VERSION%%
18 * @copyright 2005-2008 Ferry Boender
19 */
20
21class mvblog_IniFileReaderException extends mvblog_Exception {
22    protected $messages = array(
23        1 => "Can't read configuration file \"%s\"",
24        2 => "Invalid configuration option \"%s\" for section \"%s\" in %s:%s",
25        3 => "Invalid value \"%s\" for configuration option \"%s\" of type %s for section \"%s\" in %s:%s",
26        4 => "Unknown configuration item type %s",
27        );
28}
29?>
Note: See TracBrowser for help on using the browser.