()
| 20161 | constructor(toolPath, args, options) { |
| 20162 | super(); |
| 20163 | if (!toolPath) { |
| 20164 | throw new Error("Parameter 'toolPath' cannot be null or empty."); |
| 20165 | } |
| 20166 | this.toolPath = toolPath; |
| 20167 | this.args = args || []; |
| 20168 | this.options = options || {}; |
| 20169 | } |
no test coverage detected