Changeset 587
- Timestamp:
- 04/20/07 15:18:45 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/stubClassLoader.php
r581 r587 40 40 /** 41 41 * Exception thrown if the class loader can not find the desired class. 42 * 42 * 43 43 * This exception must reside here because the stubClassLoader uses it when a class can not be loaded. 44 * 44 * 45 45 * @package stubbles 46 46 */ … … 82 82 /** 83 83 * returns a string representation of the class 84 * 84 * 85 85 * The result is a short but informative representation about the class and 86 86 * its values. Per default, this method returns: … … 179 179 $uri = stubConfig::getSourcePath() . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR . str_replace('.', DIRECTORY_SEPARATOR, $fqClassName) . '.php'; 180 180 } 181 181 182 182 if ((@include $uri) == false) { 183 183 throw new stubClassNotFoundException($fqClassName);
