CircularDependencyException.php
TLDR
This file defines the CircularDependencyException
class which is an exception that represents a circular dependency in the container.
Classes
CircularDependencyException
The CircularDependencyException
class extends the Exception
class and implements the ContainerExceptionInterface
. This exception is thrown when a circular dependency is detected in the container.
<?php
namespace Illuminate\Contracts\Container;
use Exception;
use Psr\Container\ContainerExceptionInterface;
class CircularDependencyException extends Exception implements ContainerExceptionInterface
{
//
}