* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Address\Exception; /** * Is thrown when address or addresses cannot be deleted */ class DeleteAddressException extends AddressException { /** * When fails to delete single address */ public const FAILED_DELETE = 10; /** * When fails to delete address in bulk action */ public const FAILED_BULK_DELETE = 20; }