Changeset 4322
- Timestamp:
- 04/30/08 21:12:27 (14 months ago)
- Location:
- branches/0.11/lib/Doctrine
- Files:
-
- 3 modified
-
Record/Generator.php (modified) (1 diff)
-
Search.php (modified) (1 diff)
-
Validator/Driver.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Record/Generator.php
r4232 r4322 224 224 { 225 225 if ( ! isset($this->_options['children'])) { 226 throw new Doctrine_ Plugin_Exception("Unknown option 'children'.");226 throw new Doctrine_Record_Exception("Unknown option 'children'."); 227 227 } 228 228 -
branches/0.11/lib/Doctrine/Search.php
r4252 r4322 240 240 { 241 241 if ( ! isset($this->_options['table'])) { 242 throw new Doctrine_ Plugin_Exception("Unknown option 'table'.");242 throw new Doctrine_Record_Exception("Unknown option 'table'."); 243 243 } 244 244 -
branches/0.11/lib/Doctrine/Validator/Driver.php
r3884 r4322 85 85 { 86 86 if ( ! isset($this->_args[$arg])) { 87 throw new Doctrine_ Plugin_Exception('Unknown option ' . $arg);87 throw new Doctrine_Validator_Exception('Unknown option ' . $arg); 88 88 } 89 89