diff options
Diffstat (limited to 'includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php')
| -rw-r--r-- | includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php b/includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php new file mode 100644 index 0000000..b6a15a4 --- /dev/null +++ b/includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php @@ -0,0 +1,22 @@ +<?php +/** + * + * This file is part of Aura for PHP. + * + * @license http://opensource.org/licenses/bsd-license.php BSD + * + */ +namespace Aura\Sql\Exception; + +use Aura\Sql\Exception; + +/** + * + * Locator could not find a named connection. + * + * @package Aura.Sql + * + */ +class ConnectionNotFound extends Exception +{ +} |