PHP 8.2.30
Preview: forbidden-error.ts Size: 954 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/src/backend/utils/errors/forbidden-error.ts

import { ErrorTypeEnum } from '../../../utils/error-type.enum.js'
import RecordError from './record-error.js'

/**
 * Error which is thrown when user
 * doesn't have an access to a given resource/action.
 *
 * @category Errors
 */
export class ForbiddenError extends Error {
  /**
   * HTTP Status code: 403
   */
  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

  /**
   * @param {string} [message]
   */
  constructor(message?: string) {
    const defaultMessage = 'You cannot perform this action'
    super(defaultMessage)
    this.statusCode = 403
    this.baseMessage = message
    this.baseError = {
      message: message ?? defaultMessage,
      type: ErrorTypeEnum.Forbidden,
    }
    this.name = ErrorTypeEnum.Forbidden
  }
}

export default ForbiddenError

Directory Contents

Dirs: 0 × Files: 8

Name Size Perms Modified Actions
1.28 KB lrw-r--r-- 2026-02-28 00:32:00
Edit Download
783 B lrw-r--r-- 2026-02-28 00:32:02
Edit Download
954 B lrw-r--r-- 2026-02-28 00:32:16
Edit Download
261 B lrw-r--r-- 2026-02-28 00:32:28
Edit Download
1.20 KB lrw-r--r-- 2026-02-28 00:32:38
Edit Download
888 B lrw-r--r-- 2026-02-28 00:32:38
Edit Download
327 B lrw-r--r-- 2026-02-28 00:32:40
Edit Download
1.18 KB lrw-r--r-- 2026-02-28 00:32:46
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).