Changeset 5115
- Timestamp:
- 10/21/08 18:15:59 (9 months ago)
- Location:
- branches
- Files:
-
- 2 modified
-
1.0/lib/Doctrine/Manager.php (modified) (1 diff)
-
1.1/lib/Doctrine/Manager.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Manager.php
r4869 r5115 526 526 $key = (string) $key; 527 527 if ( ! isset($this->_connections[$key])) { 528 throw new InvalidKeyException();528 throw new Doctrine_Connection_Exception("Connection key '$key' does not exist."); 529 529 } 530 530 $this->_currIndex = $key; -
branches/1.1/lib/Doctrine/Manager.php
r5030 r5115 529 529 $key = (string) $key; 530 530 if ( ! isset($this->_connections[$key])) { 531 throw new InvalidKeyException();531 throw new Doctrine_Manager_Exception("Connection key '$key' does not exist."); 532 532 } 533 533 $this->_currIndex = $key;