'message' => 'The hash "abc@com" is expired.',
];
yield CustomerException::WISHLIST_IS_NOT_ACTIVATED =>
[ 'exception' => CustomerException::
customerWishlistNotActivated(),
'statusCode' => Response::HTTP_FORBIDDEN,
'errorCode' => CustomerException::WISHLIST_IS_NOT_ACTIVATED,
'message' => 'Wishlist is not activated!',
];
yield CustomerException::WISHLIST_NOT_FOUND =>
[ 'exception' => CustomerException::
customerWishlistNotFound(),
'statusCode' => Response::HTTP_NOT_FOUND,
'errorCode' => CustomerException::WISHLIST_NOT_FOUND,
'message' => 'Wishlist for this customer was not found.',
];
yield CustomerException::DUPLICATE_WISHLIST_PRODUCT =>
[ 'exception' => CustomerException::
duplicateWishlistProduct(),
'statusCode' => Response::HTTP_BAD_REQUEST,
'errorCode' => CustomerException::DUPLICATE_WISHLIST_PRODUCT,
'message' => 'Product already added in wishlist',
];