Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
Fix throw Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
PATROMO committed Aug 20, 2013
1 parent 2cd7169 commit e168357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/ODM/CouchDB/Id/IdGenerator.php
Expand Up @@ -30,7 +30,7 @@ static public function create($generatorType)
$instance = new CouchUUIDGenerator();
break;
default:
throw \Exception("ID Generator does not exist!");
throw new \Exception("ID Generator does not exist!");
}
return $instance;
}
Expand Down

0 comments on commit e168357

Please sign in to comment.