master

laravel/framework

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

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