2020-06-19 08:43:22 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-error',
|
|
|
|
templateUrl: './error.component.html',
|
|
|
|
styleUrls: ['./error.component.scss']
|
|
|
|
})
|
|
|
|
export class ErrorComponent implements OnInit {
|
|
|
|
|
2020-09-03 15:51:53 +02:00
|
|
|
message = ''; // main error message
|
|
|
|
details: string[] = []; // array of error detail paragraphs
|
2020-06-19 08:43:22 +02:00
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|