Exception.php 255 B

12345678910111213
  1. <?php
  2. /**
  3. * @package Kohana
  4. * @category Exceptions
  5. * @author Kohana Team
  6. * @copyright (c) Kohana Team
  7. * @license https://koseven.ga/LICENSE.md
  8. */
  9. class Kohana_Session_Exception extends Kohana_Exception {
  10. const SESSION_CORRUPT = 1;
  11. }