InvalidCartException.php
2 years ago
InvalidStockLevelsInCartException.php
2 years ago
NotPurchasableException.php
2 years ago
OutOfStockException.php
2 years ago
PartialOutOfStockException.php
2 years ago
RouteException.php
2 years ago
StockAvailabilityException.php
2 years ago
TooManyInCartException.php
2 years ago
TooManyInCartException.php
10 lines
| 1 | <?php |
| 2 | namespace Automattic\WooCommerce\StoreApi\Exceptions; |
| 3 | |
| 4 | /** |
| 5 | * TooManyInCartException class. |
| 6 | * |
| 7 | * This exception is thrown when more than one of a product that can only be purchased individually is in a cart. |
| 8 | */ |
| 9 | class TooManyInCartException extends StockAvailabilityException {} |
| 10 |