summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/webgpu/common/internal/util.js
blob: 18935e074b25fbc9c3f1052afa6ef369f8fc109e (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
* AUTO-GENERATED - DO NOT EDIT. Source: https://github.com/gpuweb/cts
**/ /**
 * Error without a stack, which can be used to fatally exit from `tool/` scripts with a
 * user-friendly message (and no confusing stack).
 */export class StacklessError extends Error {constructor(message) {
    super(message);
    this.stack = undefined;
  }
}
//# sourceMappingURL=util.js.map