This commit is contained in:
2017-04-06 17:00:38 +02:00
commit 04f383b728
11 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { HttpStatus, TStatusGroup } from './smartstatus.classes.http'
export class error500 extends HttpStatus {
constructor () {
super({
code: 500,
text: '',
description: 'You\'ve encountered an Http error 400. That means that the page you are looking for couldn\'t be found for some reason'
})
}
}