Commit f84b6cbc authored by zYne's avatar zYne

--no commit message

--no commit message
parent 19407e41
++ Manager exceptions
Doctrine_Manager_Exception is thrown if something failed at the connection management
<code type='php'>
try {
$manager->getConnection('unknown');
} catch (Doctrine_Manager_Exception) {
// catch errors
}
</code>
++ Relation exceptions
thrown if something failed during the relation parsing
++ Connection exceptions
thrown if something failed at the database level
<code type='php'>
try {
$conn->execute('SELECT * FROM unknowntable');
} catch (Doctrine_Connection_Exception) {
// catch errors
}
</code>
++ Query exceptions
thrown if DQL parsing fails somehow
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment