EntryNotFoundException.php 198B

123456789101112
  1. <?php
  2. namespace Illuminate\Container;
  3. use Exception;
  4. use Psr\Container\NotFoundExceptionInterface;
  5. class EntryNotFoundException extends Exception implements NotFoundExceptionInterface
  6. {
  7. //
  8. }