response.class.php 376 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * To change this template, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. /**
  7. * Description of response
  8. *
  9. * @license see /license.txt
  10. * @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Geneva
  11. */
  12. class Response
  13. {
  14. public static function not_found()
  15. {
  16. Header::response_code(404);
  17. exit;
  18. }
  19. }