LimiterTimeoutException.php
TLDR
This file defines the LimiterTimeoutException
class which extends the base Exception
class.
Classes
LimiterTimeoutException
This class extends the Exception
class and does not add any additional functionality or attributes. It serves as a specific exception type for a limiter timeout error.
<?php
namespace Illuminate\Contracts\Redis;
use Exception;
class LimiterTimeoutException extends Exception
{
//
}