mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 06:18:52 +00:00
[feature/migrations] getParameters function for migration exception
PHPBB3-11351
This commit is contained in:
parent
f409697137
commit
f18b096df9
1 changed files with 10 additions and 0 deletions
|
@ -52,4 +52,14 @@ class phpbb_db_migration_exception extends \Exception
|
||||||
{
|
{
|
||||||
return $this->message . ': ' . var_export($this->parameters, true);
|
return $this->message . ': ' . var_export($this->parameters, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the parameters
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getParameters()
|
||||||
|
{
|
||||||
|
return $this->parameters;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue