metasocket-cordova/src/app/fullscreen.error.ts

10 lines
271 B
TypeScript

import FullscreenNotification from './fullscreen.notification';
export default class FullscreenError extends FullscreenNotification
{
public constructor(message: string) {
super('Fehler', message);
this.window.classList.add('notification-window-error');
}
}