[api-minor] Remove the type
from RenderingCancelledException
(PR 16226 follow-up)
After PR 16226 we're only using `RenderingCancelledException` together with canvas-rendering, hence the `type`-property is no longer necessary.
This commit is contained in:
parent
9af50dc358
commit
225734dd00
@ -3347,7 +3347,6 @@ class InternalRenderTask {
|
|||||||
error ||
|
error ||
|
||||||
new RenderingCancelledException(
|
new RenderingCancelledException(
|
||||||
`Rendering cancelled, page ${this._pageIndex + 1}`,
|
`Rendering cancelled, page ${this._pageIndex + 1}`,
|
||||||
"canvas",
|
|
||||||
extraDelay
|
extraDelay
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -583,9 +583,8 @@ class PageViewport {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class RenderingCancelledException extends BaseException {
|
class RenderingCancelledException extends BaseException {
|
||||||
constructor(msg, type, extraDelay = 0) {
|
constructor(msg, extraDelay = 0) {
|
||||||
super(msg, "RenderingCancelledException");
|
super(msg, "RenderingCancelledException");
|
||||||
this.type = type;
|
|
||||||
this.extraDelay = extraDelay;
|
this.extraDelay = extraDelay;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3075,7 +3075,6 @@ Caron Broadcasting, Inc., an Ohio corporation (“Lessee”).`)
|
|||||||
} catch (reason) {
|
} catch (reason) {
|
||||||
expect(reason instanceof RenderingCancelledException).toEqual(true);
|
expect(reason instanceof RenderingCancelledException).toEqual(true);
|
||||||
expect(reason.message).toEqual("Rendering cancelled, page 1");
|
expect(reason.message).toEqual("Rendering cancelled, page 1");
|
||||||
expect(reason.type).toEqual("canvas");
|
|
||||||
expect(reason.extraDelay).toEqual(0);
|
expect(reason.extraDelay).toEqual(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user