master

laravel/framework

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

MultipleColumnsSelectedException.php

TLDR

This file defines the MultipleColumnsSelectedException class in the Illuminate\Database namespace. The class extends the RuntimeException class.

Classes

MultipleColumnsSelectedException

The MultipleColumnsSelectedException class is a custom exception class that extends the RuntimeException class. It serves as an exception to be thrown when multiple columns are selected in a database query, but only a single column is expected.

<?php

namespace Illuminate\Database;

use RuntimeException;

class MultipleColumnsSelectedException extends RuntimeException
{
    //
}