. /** * Exception indicating malformed parameter problem. * This exception is not supposed to be thrown when processing * user submitted data in forms. It is more suitable * for WS and other low level stuff. * * @package core * @subpackage lib * @copyright 2009 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class invalid_parameter_exception extends moodle_exception { /** * Constructor * @param string $debuginfo some detailed information */ function __construct($debuginfo=null) { parent::__construct('invalidparameter', 'debug', '', null, $debuginfo); } }