HummingBirdAnimeClient/src/Aviat/Ion/Di/Exception/NotFoundException.php

22 lines
468 B
PHP
Raw Normal View History

2015-09-17 23:11:18 -04:00
<?php
2015-11-16 11:40:01 -05:00
/**
* Ion
*
* Building blocks for web development
*
* @package Ion
* @author Timothy J. Warren
* @copyright Copyright (c) 2015 - 2016
2015-11-16 11:40:01 -05:00
* @license MIT
*/
2015-09-17 23:11:18 -04:00
namespace Aviat\Ion\Di\Exception;
2015-10-14 09:20:52 -04:00
/**
* Exception for Di Container when trying to access a
* key that doesn't exist in the container
*/
2015-11-11 15:28:51 -05:00
class NotFoundException extends ContainerException implements \Interop\Container\Exception\NotFoundException {
2015-09-17 23:11:18 -04:00
}
// End of NotFoundException.php