master

laravel/framework

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

RecordsNotFoundException.php

TLDR

This file defines the RecordsNotFoundException class, which extends the RuntimeException class.

Classes

RecordsNotFoundException

This class extends the RuntimeException class and is used to represent an exception that is thrown when a database query does not return any records.

<?php

namespace Illuminate\Database;

use RuntimeException;

class RecordsNotFoundException extends RuntimeException
{
    //
}