diff --git a/app/src/exceptions.ts b/app/src/exceptions.ts index e845efd..0fb2095 100644 --- a/app/src/exceptions.ts +++ b/app/src/exceptions.ts @@ -21,6 +21,9 @@ export class PlayerNotFoundException extends WebSocketException { export class GameNotFoundException extends WebSocketException { constructor(gameId: string) { - super('Unable to find game from ID: ' + gameId, ErrorCode.GAME_NOT_FOUND); + super( + 'Unable to find game from ID: ' + gameId, + ErrorCode.GAME_NOT_FOUND, + ); } }