X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fexceptions%2Fdatabase%2Fgeneral%2Fclass_DatabaseUpdateSupportException.php;fp=inc%2Fclasses%2Fexceptions%2Fdatabase%2Fgeneral%2Fclass_DatabaseUpdateSupportException.php;h=0000000000000000000000000000000000000000;hp=59e76f5cbd55e09374aafe675ab3076fdcc0d9db;hb=ad5f84347e52d387bbdffca674233ae3553dfdc8;hpb=976d57fe7ac564060778d10b1742d62cea5accfc diff --git a/inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php b/inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php deleted file mode 100644 index 59e76f5c..00000000 --- a/inc/classes/exceptions/database/general/class_DatabaseUpdateSupportException.php +++ /dev/null @@ -1,46 +0,0 @@ - - * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team - * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org - * @deprecated - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -class DatabaseUpdateSupportException extends DatabaseException { - /** - * The constructor - * - * @param $class Class trying the invalid database update - * @param $code Code number for the exception - * @return void - */ - public function __construct (FrameworkInterface $class, $code) { - // Generate message - $message = sprintf("[%s:%d] Database updated not allowed for this class.", - $class->__toString(), - $this->getLine() - ); - - // Just call the parent constructor - parent::__construct($message, $code); - } -} - -// [EOF] -?>