1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/new/docs/en/exceptions-and-warnings.txt

32 lines
635 B
Plaintext
Raw Normal View History

2007-06-19 04:00:36 +04:00
++ 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