Skip to content
This repository has been archived by the owner on Nov 27, 2021. It is now read-only.

Commit

Permalink
fix Exception, should be \Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
hans-d committed Jun 17, 2012
1 parent 45f0271 commit 110ae1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function hasSetting($setting)
protected function getSetting($setting)
{
if (!isset($this->settings[$setting])) {
throw new Exception('Configuration setting ' . $setting . ' does not exist');
throw new \Exception('Configuration setting ' . $setting . ' does not exist');
}

return $this->settings[$setting];
Expand Down

0 comments on commit 110ae1c

Please sign in to comment.