Skip to content

Commit

Permalink
Normalize exception class.
Browse files Browse the repository at this point in the history
  • Loading branch information
EreMaijala authored and demiankatz committed Apr 5, 2016
1 parent 9939e8a commit ba29923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/VuFind/src/VuFind/ILS/Driver/Voyager.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public function init()
$this->error(
"PDO Connection failed ($this->dbName): " . $e->getMessage()
);
throw $e;
throw new ILSException($e->getMessage());
}

$this->useHoldingsSortGroups
Expand Down

0 comments on commit ba29923

Please sign in to comment.