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

14 lines
294 B
PHP
Raw Normal View History

2015-09-17 23:11:18 -04:00
<?php
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-09-17 23:11:18 -04:00
class NotFoundException
extends ContainerException
implements \Interop\Container\Exception\NotFoundException {
}
// End of NotFoundException.php