LockTimeoutException.php
TLDR
This file defines the LockTimeoutException
class in the Illuminate\Contracts\Cache
namespace.
Classes
LockTimeoutException
The LockTimeoutException
class extends the base Exception
class and is used to represent a lock timeout exception. It is located in the Illuminate\Contracts\Cache
namespace.
<?php
namespace Illuminate\Contracts\Cache;
use Exception;
class LockTimeoutException extends Exception
{
//
}