blob: 07bd309103bc627babb6afdaa7ddad60ee4f5a9e [file]
<?php
/**
* File containing the ezcDbSchemaInvalidReaderClassException class
*
* @package DatabaseSchema
* @version //autogen//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Exception that is thrown if an invalid class is passed as schema reader to the manager.
*
* @package DatabaseSchema
* @version //autogen//
*/
class ezcDbSchemaInvalidReaderClassException extends ezcDbSchemaException
{
/**
* Constructs an ezcDbSchemaInvalidReaderClassException for reader class $readerClass
*
* @param string $readerClass
*/
function __construct( $readerClass )
{
parent::__construct( "Class '{$readerClass}' does not exist, or does not implement the 'ezcDbSchemaReader' interface." );
}
}
?>