异常处理

class Seller {
    cars = [];

    sell() {
        if (this.cars.length === 0) {
            throw "No cars for sale";
        }
        //some implementation...
    }        
}

let seller = new Seller();
seller.sell();