master

laravel/framework

Last updated at: 29/12/2023 09:21

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
{
    //
}