/** * Constructs dmInvalidLessException * * @param string $compilerErrorOutput LESS compiler error output message */ public function __construct($compilerErrorOutput) { parent::__construct('Invalid LESS code! Compiler error output: ' . $compilerErrorOutput); }
/** * 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); }