master

laravel/framework

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

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