Changeset 2667 for trunk/system/libraries/Archive.php
- Timestamp:
- 05/13/2008 02:23:53 AM (6 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Archive.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Archive.php
r2016 r2667 34 34 // Load the driver 35 35 if ( ! Kohana::auto_load($driver)) 36 throw new Kohana_Exception(' archive.driver_not_supported', $type);36 throw new Kohana_Exception('core.driver_not_found', $type, get_class($this)); 37 37 38 38 // Initialize the driver … … 41 41 // Validate the driver 42 42 if ( ! ($this->driver instanceof Archive_Driver)) 43 throw new Kohana_Exception(' archive.driver_implements', $type);43 throw new Kohana_Exception('core.driver_implements', $type, get_class($this), 'Archive_Driver'); 44 44 45 45 Log::add('debug', 'Archive Library initialized');
