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
PartialOutOfStockException.php
10 lines
| 1 | <?php |
| 2 | namespace Automattic\WooCommerce\StoreApi\Exceptions; |
| 3 | |
| 4 | /** |
| 5 | * PartialOutOfStockException class. |
| 6 | * |
| 7 | * This exception is thrown when an item in a draft order has a quantity greater than what is available in stock. |
| 8 | */ |
| 9 | class PartialOutOfStockException extends StockAvailabilityException {} |
| 10 |