Improving error messages

This commit is contained in:
Fabian Stamm
2020-09-14 23:47:48 +02:00
parent dd1d8e0947
commit 66b430ac90
3 changed files with 14 additions and 5 deletions

View File

@ -0,0 +1,5 @@
export class ServerError extends Error {
constructor(message: string) {
super(message);
}
}