'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.',
];
yield CustomerException::NO_HASH_PROVIDED =>
[ 'exception' => CustomerException::
noHashProvided(),
'statusCode' => Response::HTTP_NOT_FOUND,
'errorCode' => CustomerException::NO_HASH_PROVIDED,
'message' => 'The given hash is empty.',
];
yield CustomerException::WISHLIST_PRODUCT_NOT_FOUND =>
[ 'exception' => CustomerException::
wishlistProductNotFound('id-1'
),
'statusCode' => Response::HTTP_NOT_FOUND,
'errorCode' => CustomerException::WISHLIST_PRODUCT_NOT_FOUND,
'message' => 'Wishlist product with id id-1 not found',
];