1
0
mirror of synced 2025-02-17 20:53:18 +03:00

[amadeus] changed exception name ($e) to not conflict with existing var of that name. Also minor spelling error.

This commit is contained in:
doctrine 2006-07-22 01:01:01 +00:00
parent 50cced9e54
commit f6fa905ef2

@ -91,8 +91,8 @@ class Doctrine_RawSql extends Doctrine_Hydrate {
if( ! isset($this->tables[$e[0]])) {
try {
$this->addComponent($e[0], ucwords($e[0]));
} catch(Doctrine_Exception $e) {
throw new Doctrine_Exception("The associated component for tablealias $e[0] couldn't be found.");
} catch(Doctrine_Exception $exception) {
throw new Doctrine_Exception("The associated component for table alias $e[0] couldn't be found.");
}
}