Use `new` when constructing errors
This commit is contained in:
parent
cffb42ee8f
commit
d3ed883a8f
|
@ -37,7 +37,7 @@ export default class HextileDecoder {
|
||||||
|
|
||||||
let subencoding = rQ[rQi]; // Peek
|
let subencoding = rQ[rQi]; // Peek
|
||||||
if (subencoding > 30) { // Raw
|
if (subencoding > 30) { // Raw
|
||||||
throw Error("Illegal hextile subencoding (subencoding: " +
|
throw new Error("Illegal hextile subencoding (subencoding: " +
|
||||||
subencoding + ")");
|
subencoding + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ export default class TightDecoder {
|
||||||
ret = this._basicRect(this._ctl, x, y, width, height,
|
ret = this._basicRect(this._ctl, x, y, width, height,
|
||||||
sock, display, depth);
|
sock, display, depth);
|
||||||
} else {
|
} else {
|
||||||
throw Error("Illegal tight compression received (ctl: " +
|
throw new Error("Illegal tight compression received (ctl: " +
|
||||||
this._ctl + ")");
|
this._ctl + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,7 +100,7 @@ export default class TightDecoder {
|
||||||
}
|
}
|
||||||
|
|
||||||
_pngRect(x, y, width, height, sock, display, depth) {
|
_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) {
|
_basicRect(ctl, x, y, width, height, sock, display, depth) {
|
||||||
|
@ -135,7 +135,7 @@ export default class TightDecoder {
|
||||||
sock, display, depth);
|
sock, display, depth);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw Error("Illegal tight filter received (ctl: " +
|
throw new Error("Illegal tight filter received (ctl: " +
|
||||||
this._filter + ")");
|
this._filter + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ export default class TightDecoder {
|
||||||
|
|
||||||
data = this._zlibs[streamId].inflate(data, true, uncompressedSize);
|
data = this._zlibs[streamId].inflate(data, true, uncompressedSize);
|
||||||
if (data.length != 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);
|
data = this._zlibs[streamId].inflate(data, true, uncompressedSize);
|
||||||
if (data.length != 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) {
|
_gradientFilter(streamId, x, y, width, height, sock, display, depth) {
|
||||||
throw Error("Gradient filter not implemented");
|
throw new Error("Gradient filter not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
_readData(sock) {
|
_readData(sock) {
|
||||||
|
|
|
@ -24,6 +24,6 @@ export default class TightPNGDecoder extends TightDecoder {
|
||||||
}
|
}
|
||||||
|
|
||||||
_basicRect(ctl, x, y, width, height, sock, display, depth) {
|
_basicRect(ctl, x, y, width, height, sock, display, depth) {
|
||||||
throw Error("BasicCompression received in TightPNG rect");
|
throw new Error("BasicCompression received in TightPNG rect");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,10 +35,10 @@ const DISCONNECT_TIMEOUT = 3;
|
||||||
export default class RFB extends EventTargetMixin {
|
export default class RFB extends EventTargetMixin {
|
||||||
constructor(target, url, options) {
|
constructor(target, url, options) {
|
||||||
if (!target) {
|
if (!target) {
|
||||||
throw Error("Must specify target");
|
throw new Error("Must specify target");
|
||||||
}
|
}
|
||||||
if (!url) {
|
if (!url) {
|
||||||
throw Error("Must specify URL");
|
throw new Error("Must specify URL");
|
||||||
}
|
}
|
||||||
|
|
||||||
super();
|
super();
|
||||||
|
|
Loading…
Reference in New Issue