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