import { DaffCartServerSideResolutionError } from '@daffodil/cart'
An error thrown when the cart fails to resolve. This happens when the app is running in a server environment. This is normal and expected in SSR.
class DaffCartServerSideResolutionError extends DaffInheritableError implements DaffError {
readonly code: string = DaffCartErrorCodes.CART_SERVER_SIDE_RESOLUTION
__proto__: Error
recoverable: boolean = false
name: string
message: string
stack: string
}
string| Default | DaffCartErrorCodes.CART_SERVER_SIDE_RESOLUTION |
|---|---|
| Description | A string that uniquely identifies the error. |
Error| Default | – |
|---|---|
| Description |
boolean| Default | false |
|---|---|
| Description |
string| Default | – |
|---|---|
| Description |
string| Default | – |
|---|---|
| Description | Contains additional relevant information to the cause and/or solution of the error. |
string| Default | – |
|---|---|
| Description |