コード例 #1
0
 /**
  * Constructs dmInvalidLessException
  * 
  * @param string $compilerErrorOutput LESS compiler error output message
  */
 public function __construct($compilerErrorOutput)
 {
     parent::__construct('Invalid LESS code! Compiler error output: ' . $compilerErrorOutput);
 }
コード例 #2
0
 /**
  * Constructs dmLessIOException
  * 
  * @param string $message
  */
 public function __construct($message)
 {
     parent::__construct($message);
 }
 /**
  * Constructs dmUnreachableRemoteLessException
  * 
  * @param string $remoteURI LESS file source
  */
 public function __construct($remoteURI)
 {
     parent::__construct('Remote LESS file could not be loaded from URI: ' . $remoteURI);
 }