smartstatus/ts/smartstatus.classes.http.5xx.ts

12 lines
341 B
TypeScript
Raw Normal View History

2017-04-06 15:00:38 +00:00
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'
})
}
}