Skip to content

Commit

Permalink
Adding the FileFormatException class.
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxist committed Jul 9, 2011
1 parent f738024 commit 0528e63
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/Opl/Autoloader/Exception/FileFormatException.php
@@ -0,0 +1,26 @@
<?php
/*
* OPEN POWER LIBS <http://www.invenzzia.org>
*
* This file is subject to the new BSD license that is bundled
* with this package in the file LICENSE. It is also available through
* WWW at this URL: <http://www.invenzzia.org/license/new-bsd>
*
* Copyright (c) Invenzzia Group <http://www.invenzzia.org>
* and other contributors. See website for details.
*/
namespace Opl\Autoloader\Exception;
use RuntimeException;

/**
* This exception is thrown by the configuration parser, if the configuration
* file cannot be read.
*
* @author Tomasz Jędrzejewski
* @copyright Invenzzia Group <http://www.invenzzia.org/> and contributors.
* @license http://www.invenzzia.org/license/new-bsd New BSD License
*/
class FileFormatException extends RuntimeException
{

} // end FileFormatException;

0 comments on commit 0528e63

Please sign in to comment.