@u4/adbkit
Version:
A Typescript client for the Android Debug Bridge.
12 lines • 421 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ShellExecError extends Error {
constructor(message) {
super(`Failure: '${message}'`);
Object.setPrototypeOf(this, ShellExecError.prototype);
this.name = 'ShellExecError';
Error.captureStackTrace(this, ShellExecError);
}
}
exports.default = ShellExecError;
//# sourceMappingURL=ShellExecError.js.map