hipay/hipay-wallet-cashout-mirakl-library

View on GitHub
src/Api/HiPay/Model/Status/Error.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HiPay\Wallet\Mirakl\Api\HiPay\Model\Status;

use HiPay\Wallet\Mirakl\Common\AbstractEnumeration;

/**
 * Constants for the error descriptions
 *
 * @author    Ivanis Kouamé <ivanis.kouame@smile.fr>
 * @copyright 2015 Smile
 */
class Error extends AbstractEnumeration
{
    // HiPay Wallet error codes.
    const AUTHENTICATION_FAILED = 1;
    const MISSING_PARAMETER = 2;
    const PARAMETER_NOT_VALID = 3;
    const UNAUTHORIZED_METHOD = 4;
    const OBJECT_NOT_FOUND = 7;
    const TECHNICAL_ERROR = 13;
    const WRONG_BANK_STATUS = 23;
}