33 lines
718 B
PHP
33 lines
718 B
PHP
<?php
|
|
/**
|
|
* Since 2013 Ovidiu Cimpean.
|
|
*
|
|
* Ovidiu Cimpean - Newsletter Pro © All rights reserved.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit, modify or copy this file.
|
|
* If you wish to customize it, contact us at addons4prestashop@gmail.com.
|
|
*
|
|
* @author Ovidiu Cimpean <addons4prestashop@gmail.com>
|
|
* @copyright Since 2013 Ovidiu Cimpean
|
|
* @license Do not edit, modify or copy this file
|
|
*
|
|
* @version Release: 4
|
|
*/
|
|
|
|
class NewsletterProSendNewsletterException extends Exception
|
|
{
|
|
const CODE_NO_STEPS_AVAILABLE = 101;
|
|
|
|
const CODE_SEND_IN_PROGRESS = 102;
|
|
|
|
const CODE_NO_CONNECTIONS_AVAILABLE = 103;
|
|
|
|
const CODE_SEND_IS_PAUSED = 104;
|
|
|
|
const CODE_NO_ACTIVE_SEND = 105;
|
|
|
|
const CODE_SEND_COMPLETE = 106;
|
|
}
|