master

laravel/framework

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

DeadlockException.php

TLDR

This file defines the DeadlockException class, which is used in the Illuminate\Database namespace. It extends the PDOException class.

Classes

DeadlockException

This class extends the PDOException class and has no additional functionality or properties.

<?php

namespace Illuminate\Database;

use PDOException;

class DeadlockException extends PDOException
{
    //
}