project-nomad/admin/app/exceptions/internal_server_error_exception.ts
2025-12-23 16:00:33 -08:00

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'
}