UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

9 lines 325 B
export default class ShellExecError extends Error { constructor(message) { super(`Failure: '${message}'`); Object.setPrototypeOf(this, ShellExecError.prototype); this.name = 'ShellExecError'; Error.captureStackTrace(this, ShellExecError); } } //# sourceMappingURL=ShellExecError.js.map