Changeset 3639
- Timestamp:
- 01/25/08 23:13:04 (18 months ago)
- Files:
-
- 3 modified
-
branches/0.10/lib/Doctrine/Record.php (modified) (1 diff)
-
branches/0.9/lib/Doctrine/Record.php (modified) (1 diff)
-
trunk/lib/Doctrine/Record.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Record.php
r3552 r3639 1806 1806 } 1807 1807 1808 throw new Doctrine_Record_Exception( 'Unknown method ' . $method);1808 throw new Doctrine_Record_Exception(sprintf('Unknown method %s::%s', get_class($this), $method)); 1809 1809 } 1810 1810 -
branches/0.9/lib/Doctrine/Record.php
r3550 r3639 1722 1722 } 1723 1723 1724 throw new Doctrine_Record_Exception( 'Unknown method ' . $method);1724 throw new Doctrine_Record_Exception(sprintf('Unknown method %s::%s', get_class($this), $method)); 1725 1725 } 1726 1726 -
trunk/lib/Doctrine/Record.php
r3590 r3639 1842 1842 } 1843 1843 1844 throw new Doctrine_Record_Exception( 'Unknown method ' . $method);1844 throw new Doctrine_Record_Exception(sprintf('Unknown method %s::%s', get_class($this), $method)); 1845 1845 } 1846 1846