PHP Classes

File: src/Exception/QueryError.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   EasyDB   src/Exception/QueryError.php   Download  
File: src/Exception/QueryError.php
Role: Class source
Content type: text/plain
Description: Exception
Class: EasyDB
Simple Database Abstraction Layer around PDO
Author: By
Last change: Refactoring

- Change exceptions to extend the same base class
- Update code style to avoid \\ prefixes (use imports instead)
Date: 1 year ago
Size: 201 bytes
 

Contents

Class file image Download
<?php
namespace ParagonIE\EasyDB\Exception;

use
ParagonIE\Corner\CornerTrait;

/**
 * QueryError.
 *
 * @package ParagonIE\EasyDB
 */
class QueryError extends EasyDBException
{
    use
CornerTrait;
}