* @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\Order\Exception; /** * Thrown when failed to send email associated with order */ class OrderEmailSendException extends OrderException { /** * When order email resending failed */ public const FAILED_RESEND = 1; /** * When order process email sending failed */ public const FAILED_SEND_PROCESS_ORDER = 2; }