1
0
Fork 0

Added basic structure of MySQL statement parsers.

Dieser Commit ist enthalten in:
D4rk4ng3l 2011-06-18 11:10:40 +00:00
Ursprung a211f7b334
Commit 55aa7889e5
8 geänderte Dateien mit 291 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -1,4 +1,20 @@
<?php
/**
* This file is part of MySQLDumper released under the GNU/GPL 2 license
* http://www.mysqldumper.net
*
* @package MySQLDumper
* @subpackage SQL-Browser
* @version SVN: $Rev: 1227 $
* @author $Author: DSB $
*/
require_once 'Msd/Exception.php';
/**
* Exception class for all SQL-Parser exceptions.
*
* @package MySQLDumper
* @subpackage SQL-Browser
*/
class Msd_Sql_Parser_Exception extends Msd_Exception
{ }