* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\Module\PsxDesign\Exception; if (!defined('_PS_VERSION_')) { exit; } class PsxDesignAccountsException extends PsxDesignException { /** * NOTICE SEVERITY 1-100 */ public const FAILED_GET_SERVICE = 1; public const FAILED_GET_PS_ACCOUNTS_SERVICE = 2; public const FAILED_GET_PS_ACCOUNTS_SESSION_SERVICE = 3; }