GitHub

DaffCartNotFoundError

Error

import { DaffCartNotFoundError } from '@daffodil/cart/driver'

An error thrown when a cart driver call is sent with a cart identifier that cannot be found by the platform.

class DaffCartNotFoundError extends DaffInheritableError implements DaffError {
  readonly code: string = DaffCartDriverErrorCodes.CART_NOT_FOUND
  __proto__: Error
  recoverable: boolean = false
  name: string
  message: string
  stack: string
}