PHP Classes

File: src/Exception/InvalidTableName.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   EasyDB   src/Exception/InvalidTableName.php   Download  
File: src/Exception/InvalidTableName.php
Role: Class source
Content type: text/plain
Description: Class source
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: 289 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

namespace
ParagonIE\EasyDB\Exception;

use
ParagonIE\Corner\CornerInterface;
use
ParagonIE\Corner\CornerTrait;

/**
 * Class InvalidTableName
 * @package ParagonIE\EasyDB\Exception
 */
class InvalidTableName extends EasyDBException
{
    use
CornerTrait;
}