16 lines
158 B
PHP
16 lines
158 B
PHP
<?php
|
|
|
|
namespace PicoDb;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* SQLException
|
|
*
|
|
* @package PicoDb
|
|
* @author Frederic Guillot
|
|
*/
|
|
class SQLException extends Exception
|
|
{
|
|
}
|