summaryrefslogtreecommitdiff
path: root/harness/sta.js
blob: 39fc5b98b688d52d68484b738853effd3baf45e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Copyright (c) 2012 Ecma International.  All rights reserved.
/// This code is governed by the BSD license found in the LICENSE file.

function Test262Error(message) {
  this.message = message || "";
}

Test262Error.prototype.toString = function () {
  return "Test262Error: " + this.message;
};

var $ERROR;
$ERROR = function $ERROR(message) {
  throw new Test262Error(message);
};