Changeset 6840
- Timestamp:
- 12/01/09 15:28:58 (8 months ago)
- Location:
- branches/1.2/lib/Doctrine
- Files:
-
- 2 modified
-
Adapter/Statement/Oracle.php (modified) (4 diffs)
-
Node/NestedSet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/lib/Doctrine/Adapter/Statement/Oracle.php
r6838 r6840 99 99 public function bindColumn($column, $param, $type = null) 100 100 { 101 throw new Exception("Unsupported");101 throw new Doctrine_Adapter_Exception("Unsupported"); 102 102 } 103 103 … … 374 374 } 375 375 } else { 376 throw new Exception("Unsupported mode: '" . $fetchStyle . "' ");376 throw new Doctrine_Adapter_Exception("Unsupported mode: '" . $fetchStyle . "' "); 377 377 } 378 378 … … 492 492 public function nextRowset() 493 493 { 494 throw new Exception("Unsupported");494 throw new Doctrine_Adapter_Exception("Unsupported"); 495 495 } 496 496 … … 549 549 public function setFetchMode($mode, $arg1 = null, $arg2 = null) 550 550 { 551 throw new Exception("Unsupported");551 throw new Doctrine_Adapter_Exception("Unsupported"); 552 552 } 553 553 -
branches/1.2/lib/Doctrine/Node/NestedSet.php
r6799 r6840 634 634 break; 635 635 default: 636 throw new Exception("Unknown move operation: $moveType.");636 throw new Doctrine_Node_Exception("Unknown move operation: $moveType."); 637 637 } 638 638