diff --git a/lib/private/db/migrationexception.php b/lib/private/db/migrationexception.php index f257534812..f3c908aa40 100644 --- a/lib/private/db/migrationexception.php +++ b/lib/private/db/migrationexception.php @@ -16,4 +16,11 @@ class MigrationException extends \Exception { $this->$table = $table; parent::__construct($message); } + + /** + * @return string + */ + public function getTable() { + return $this->table; + } }