'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',
];
yield CustomerException::LEGACY_PASSWORD_ENCODER_NOT_FOUND =>
[ 'exception' => CustomerException::
legacyPasswordEncoderNotFound('encoder'
),
'statusCode' => Response::HTTP_BAD_REQUEST,
'errorCode' => CustomerException::LEGACY_PASSWORD_ENCODER_NOT_FOUND,
'message' => 'Encoder with name "encoder" not found.',
];