You are here

NoFieldsException.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Database/Query/NoFieldsException.php

File

core/lib/Drupal/Core/Database/Query/NoFieldsException.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Database\Query\NoFieldsException.
 */
namespace Drupal\Core\Database\Query;

use Drupal\Core\Database\DatabaseException;

/**
 * Exception thrown if an insert query doesn't specify insert or default fields.
 */
class NoFieldsException extends \InvalidArgumentException implements DatabaseException {

}

Classes

Namesort descending Description
NoFieldsException Exception thrown if an insert query doesn't specify insert or default fields.