aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/migration/exception.php
diff options
context:
space:
mode:
authorAndy Chase <asperous2@gmail.com>2013-07-22 11:29:36 -0700
committerAndy Chase <asperous2@gmail.com>2013-07-22 11:29:36 -0700
commite2a769ac79ad408e94935c97a5fc1325fb838c4f (patch)
tree5f56bbc9d9290f49a6c88987561f345df49f8a3c /phpBB/includes/db/migration/exception.php
parentcc1aef47fb4f5d37415436c62067ad2dcde768bb (diff)
parentb71038486e067daf0c608d73aabeb60a56e86840 (diff)
downloadforums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar
forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar.gz
forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar.bz2
forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.tar.xz
forums-e2a769ac79ad408e94935c97a5fc1325fb838c4f.zip
Merge branch 'develop' into ticket/11620
Diffstat (limited to 'phpBB/includes/db/migration/exception.php')
-rw-r--r--phpBB/includes/db/migration/exception.php79
1 files changed, 0 insertions, 79 deletions
diff --git a/phpBB/includes/db/migration/exception.php b/phpBB/includes/db/migration/exception.php
deleted file mode 100644
index e84330dd71..0000000000
--- a/phpBB/includes/db/migration/exception.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-/**
-*
-* @package db
-* @copyright (c) 2012 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
-*
-*/
-
-/**
-* @ignore
-*/
-if (!defined('IN_PHPBB'))
-{
- exit;
-}
-
-/**
-* The migrator is responsible for applying new migrations in the correct order.
-*
-* @package db
-*/
-class phpbb_db_migration_exception extends \Exception
-{
- /**
- * Extra parameters sent to exception to aid in debugging
- * @var array
- */
- protected $parameters;
-
- /**
- * Throw an exception.
- *
- * First argument is the error message.
- * Additional arguments will be output with the error message.
- */
- public function __construct()
- {
- $parameters = func_get_args();
- $message = array_shift($parameters);
- parent::__construct($message);
-
- $this->parameters = $parameters;
- }
-
- /**
- * Output the error as a string
- *
- * @return string
- */
- public function __toString()
- {
- return $this->message . ': ' . var_export($this->parameters, true);
- }
-
- /**
- * Get the parameters
- *
- * @return array
- */
- public function getParameters()
- {
- return $this->parameters;
- }
-
- /**
- * Get localised message (with $user->lang())
- *
- * @param phpbb_user $user
- * @return string
- */
- public function getLocalisedMessage(phpbb_user $user)
- {
- $parameters = $this->getParameters();
- array_unshift($parameters, $this->getMessage());
-
- return call_user_func_array(array($user, 'lang'), $parameters);
- }
-}