mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-29 13:09:26 +02:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
import { Exception } from '@adonisjs/core/exceptions'
|
|
|
|
export default class InternalServerErrorException extends Exception {
|
|
static status = 500
|
|
static code = 'E_INTERNAL_SERVER_ERROR'
|
|
} |