/**
  * Call the render function of the child class called by service.
  *
  * @return string
  * @access public
  * @author Etienne de Longeaux <*****@*****.**>
  */
 public final function run($options = null)
 {
     return $this->render($options);
     try {
         return $this->render($options);
     } catch (\Exception $e) {
         throw ServiceException::serviceRenderUndefined('JQUERY');
     }
 }
 /**
  * Call the render function of the child class called by service.
  *
  * @return string
  * @access    public
  * @final
  *
  * @author (c) Etienne de Longeaux <*****@*****.**>
  */
 public final function runCss($options = null)
 {
     try {
         return $this->scriptCss($options);
     } catch (\Exception $e) {
         throw ServiceException::serviceRenderUndefined('WIDGET');
     }
 }