summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/private/db/migrationexception.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/db/migrationexception.php b/lib/private/db/migrationexception.php
index f257534812f..f3c908aa40a 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;
+ }
}