summaryrefslogtreecommitdiffstats
path: root/lib/private/db/migrationexception.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-05-07 12:53:42 +0200
committerRobin Appelman <icewind@owncloud.com>2014-06-03 11:18:46 +0200
commit397a763c49ea8b9585405e711f92969191c0c613 (patch)
tree623381dd7fdc34f208c3722aa28ff7aeb1f5d09c /lib/private/db/migrationexception.php
parentc6053b283046c7db7201d60d341e279032394002 (diff)
downloadnextcloud-server-397a763c49ea8b9585405e711f92969191c0c613.tar.gz
nextcloud-server-397a763c49ea8b9585405e711f92969191c0c613.zip
add a getter for the table
Diffstat (limited to 'lib/private/db/migrationexception.php')
-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;
+ }
}