baublet/w8mngr

View on GitHub
api/helpers/errors/NotFoundError.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { BaseError } from "./BaseError";

export class NotFoundError extends BaseError {
  constructor(message: string, details?: Record<string, any>) {
    super(message, details);
  }
}