* @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\CmsPage\Exception; /** * Is thrown on failure when deleting cms page */ class CannotDeleteCmsPageException extends CmsPageException { /** * When fails to delete single cms page */ public const FAILED_DELETE = 10; /** * When fails to delete cms pages on bulk action */ public const FAILED_BULK_DELETE = 20; }