BindingResolutionException.php
TLDR
This file defines the BindingResolutionException
class which extends the Exception
class and implements the ContainerExceptionInterface
. It is located in the Illuminate\Contracts\Container
namespace.
Classes
BindingResolutionException
This class represents an exception thrown during the binding resolution process. It extends the Exception
class and implements the ContainerExceptionInterface
.
<?php
namespace Illuminate\Contracts\Container;
use Exception;
use Psr\Container\ContainerExceptionInterface;
class BindingResolutionException extends Exception implements ContainerExceptionInterface
{
//
}