Changeset 2667 for trunk/system/libraries/Session.php
- Timestamp:
- 05/13/2008 02:23:53 AM (6 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Session.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Session.php
r2649 r2667 62 62 // Load the driver 63 63 if ( ! Kohana::auto_load($driver)) 64 throw new Kohana_Exception(' session.driver_not_supported', self::$config['driver']);64 throw new Kohana_Exception('core.driver_not_found', self::$config['driver'], get_class($this)); 65 65 66 66 // Initialize the driver … … 69 69 // Validate the driver 70 70 if ( ! (self::$driver instanceof Session_Driver)) 71 throw new Kohana_Exception(' session.driver_implements', self::$config['driver']);71 throw new Kohana_Exception('core.driver_implements', self::$config['driver'], get_class($this), 'Session_Driver'); 72 72 73 73 // Register non-native driver as the session handler
