[feature/migrations] getParameters function for migration exception

PHPBB3-11351
This commit is contained in:
Nathaniel Guse 2013-02-09 21:10:56 -06:00
parent f409697137
commit f18b096df9

View file

@ -52,4 +52,14 @@ class phpbb_db_migration_exception extends \Exception
{
return $this->message . ': ' . var_export($this->parameters, true);
}
/**
* Get the parameters
*
* @return array
*/
public function getParameters()
{
return $this->parameters;
}
}