diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/db/migrationexception.php | 7 |
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; + } } |