You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
8 months ago
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.BindingsError = void 0;
|
||
|
class BindingsError extends Error {
|
||
|
constructor(message, { canceled = false } = {}) {
|
||
|
super(message);
|
||
|
this.canceled = canceled;
|
||
|
}
|
||
|
}
|
||
|
exports.BindingsError = BindingsError;
|