2020-04-16 08:04:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) SapphireCode - All Rights Reserved
|
|
|
|
* This file is part of Snippeteer which is released under BSD-3-Clause.
|
|
|
|
* See file 'LICENSE' for full license details.
|
2020-05-07 18:40:35 +02:00
|
|
|
* Created by Timo Hocker <timo@scode.ovh>, May 2020
|
2020-04-16 08:04:58 +02:00
|
|
|
*/
|
|
|
|
|
2020-04-16 08:02:35 +02:00
|
|
|
export class DialogHandler {
|
2020-04-16 08:00:53 +02:00
|
|
|
public static catch (): void {
|
2020-04-18 17:24:41 +02:00
|
|
|
// eslint-disable-next-line no-process-exit
|
2020-04-16 08:00:53 +02:00
|
|
|
process.exit ();
|
|
|
|
}
|
|
|
|
}
|