. /** * Exception indicating malformed response 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. */ class invalid_response_exception extends moodle_exception { /** * Constructor * @param string $debuginfo some detailed information */ function __construct($debuginfo=null) { parent::__construct('invalidresponse', 'debug', '', null, $debuginfo); } }