Changeset 1515

Show
Ignore:
Timestamp:
04/06/08 17:48:24 (1 month ago)
Author:
mikey
Message:

make exception message more verbose

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/websites/memphis/stubMemphisIncludeFilePageElement.php

    r1503 r1515  
    5353        $existsInBasePath = file_exists(self::$baseDir . DIRECTORY_SEPARATOR . $source); 
    5454        if (false === $existsInBasePath && file_exists($source) === false) { 
    55             throw new stubFileNotFoundException($source); 
     55            throw new stubFileNotFoundException(self::$baseDir . DIRECTORY_SEPARATOR . $source); 
    5656        } 
    5757