...

/

Challenge: Implement Delete Cart Items API

Challenge: Implement Delete Cart Items API

You will attempt to implement “delete cart items” APIs in this challenge.

We'll cover the following...

First, let’s declare an exception, CartItemNotExistException.

Press + to interact
package com.educative.ecommerce.exceptions;
public class CartItemNotExistException extends Exception {
public CartItemNotExistException(String msg) {
super(msg);
}
}
...