mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
27 lines
427 B
PHP
27 lines
427 B
PHP
<?php
|
|
|
|
/**#@+
|
|
* @version 0.0.4
|
|
* @since 0.0.4
|
|
*/
|
|
|
|
/**
|
|
* @package POT
|
|
* @author Wrzasq <wrzasq@gmail.com>
|
|
* @copyright 2007 (C) by Wrzasq
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public License, Version 3
|
|
*/
|
|
|
|
/**
|
|
* Occurs when code attempts to execute driven action that has no assigned driver to handle it.
|
|
*
|
|
* @package POT
|
|
*/
|
|
class E_OTS_NoDriver extends Exception
|
|
{
|
|
}
|
|
|
|
/**#@-*/
|
|
|
|
?>
|