LockTimeoutException.php
TLDR
This file defines the LockTimeoutException
class which extends the Exception
class.
Classes
LockTimeoutException
This class represents an exception that is thrown when a lock timeout occurs. It extends the Exception
class.
<?php
namespace Illuminate\Contracts\Filesystem;
use Exception;
class LockTimeoutException extends Exception
{
//
}