Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
co-authored by
dwelle
parent
5c26bd19d7
commit
fc58e51ab3
@@ -0,0 +1,11 @@
|
||||
type CANVAS_ERROR_NAMES = "CANVAS_ERROR" | "CANVAS_POSSIBLY_TOO_BIG";
|
||||
export class CanvasError extends Error {
|
||||
constructor(
|
||||
message: string = "Couldn't export canvas.",
|
||||
name: CANVAS_ERROR_NAMES = "CANVAS_ERROR",
|
||||
) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.message = message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user