Use `new` when constructing errors

This commit is contained in:
Juanjo Diaz 2018-11-24 21:44:11 +02:00
parent cffb42ee8f
commit d3ed883a8f
4 changed files with 10 additions and 10 deletions

View File

@ -37,7 +37,7 @@ export default class HextileDecoder {
let subencoding = rQ[rQi]; // Peek
if (subencoding > 30) { // Raw
throw Error("Illegal hextile subencoding (subencoding: " +
throw new Error("Illegal hextile subencoding (subencoding: " +
subencoding + ")");
}

View File

@ -62,7 +62,7 @@ export default class TightDecoder {
ret = this._basicRect(this._ctl, x, y, width, height,
sock, display, depth);
} else {
throw Error("Illegal tight compression received (ctl: " +
throw new Error("Illegal tight compression received (ctl: " +
this._ctl + ")");
}
@ -100,7 +100,7 @@ export default class TightDecoder {
}
_pngRect(x, y, width, height, sock, display, depth) {
throw Error("PNG received in standard Tight rect");
throw new Error("PNG received in standard Tight rect");
}
_basicRect(ctl, x, y, width, height, sock, display, depth) {
@ -135,7 +135,7 @@ export default class TightDecoder {
sock, display, depth);
break;
default:
throw Error("Illegal tight filter received (ctl: " +
throw new Error("Illegal tight filter received (ctl: " +
this._filter + ")");
}
@ -164,7 +164,7 @@ export default class TightDecoder {
data = this._zlibs[streamId].inflate(data, true, uncompressedSize);
if (data.length != uncompressedSize) {
throw Error("Incomplete zlib block");
throw new Error("Incomplete zlib block");
}
}
@ -212,7 +212,7 @@ export default class TightDecoder {
data = this._zlibs[streamId].inflate(data, true, uncompressedSize);
if (data.length != uncompressedSize) {
throw Error("Incomplete zlib block");
throw new Error("Incomplete zlib block");
}
}
@ -277,7 +277,7 @@ export default class TightDecoder {
}
_gradientFilter(streamId, x, y, width, height, sock, display, depth) {
throw Error("Gradient filter not implemented");
throw new Error("Gradient filter not implemented");
}
_readData(sock) {

View File

@ -24,6 +24,6 @@ export default class TightPNGDecoder extends TightDecoder {
}
_basicRect(ctl, x, y, width, height, sock, display, depth) {
throw Error("BasicCompression received in TightPNG rect");
throw new Error("BasicCompression received in TightPNG rect");
}
}

View File

@ -35,10 +35,10 @@ const DISCONNECT_TIMEOUT = 3;
export default class RFB extends EventTargetMixin {
constructor(target, url, options) {
if (!target) {
throw Error("Must specify target");
throw new Error("Must specify target");
}
if (!url) {
throw Error("Must specify URL");
throw new Error("Must specify URL");
}
super();