REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 1.28 KB
Close
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/src/backend/utils/errors/app-error.ts
Text
Base64
import { NoticeMessage } from '../../../index.js' import { ErrorTypeEnum } from '../../../utils/error-type.enum.js' import RecordError from './record-error.js' /** * Error which can be thrown by developer in custom actions/hooks/components * * @category Errors */ export class AppError extends Error { /** * HTTP Status code, defaults to 400 */ public statusCode: number /** * Base error message and type which is stored in the record */ public baseError: RecordError /** * Any custom message which should be seen in the UI */ public baseMessage?: string /** * Any additional error information */ public data?: Record<string, unknown> /** * Any additional notice configuration to show in UI */ public notice?: Partial<NoticeMessage> /** * @param {string} message a message to be shared with the client * @param {string} data additional data to be shared with the client */ constructor(message: string, data?: Record<string, unknown>, notice?: Partial<NoticeMessage>) { super(message) this.statusCode = 400 this.baseMessage = message this.baseError = { message, type: ErrorTypeEnum.App, } this.data = data this.notice = notice this.name = ErrorTypeEnum.App } } export default AppError
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 8
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
app-error.ts
1.28 KB
lrw-r--r--
2026-02-28 00:32:00
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
configuration-error.ts
783 B
lrw-r--r--
2026-02-28 00:32:02
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
forbidden-error.ts
954 B
lrw-r--r--
2026-02-28 00:32:16
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
index.ts
261 B
lrw-r--r--
2026-02-28 00:32:28
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
not-found-error.ts
1.20 KB
lrw-r--r--
2026-02-28 00:32:38
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
not-implemented-error.ts
888 B
lrw-r--r--
2026-02-28 00:32:38
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
record-error.ts
327 B
lrw-r--r--
2026-02-28 00:32:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
validation-error.ts
1.18 KB
lrw-r--r--
2026-02-28 00:32:46
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).