master

laravel/framework

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

LostConnectionException.php

TLDR

This file defines the LostConnectionException class, which is a subclass of the LogicException class.

Classes

LostConnectionException

The LostConnectionException class is a subclass of the LogicException class. It represents an exception that is thrown when a database connection is lost.

<?php

namespace Illuminate\Database;

use LogicException;

class LostConnectionException extends LogicException
{
    //
}