HttpNotFoundError<T> constructor

const HttpNotFoundError<T>({
  1. String slug = '',
  2. String msg = '',
  3. String stackTrace = '',
  4. Maybe<T> response = const Nothing(),
})

Implementation

const HttpNotFoundError({
  super.slug,
  super.msg,
  super.stackTrace,
  super.response,
}) : super(
        code: 404,
      );