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