. /** * An exception that indicates that file can not be served * * @package core * @subpackage lib * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class file_serving_exception extends moodle_exception { /** * Constructor * @param string $debuginfo optional more detailed information */ function __construct($debuginfo = NULL) { parent::__construct('cannotservefile', 'error', '', NULL, $debuginfo); } }