aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/storage/vendor/cardinity/cardinity-sdk-php/src/Exception/NotAcceptable.php
blob: 123f0b58d20e1c2bfbad7ef5e187a168912a17fd (plain)
1
2
3
4
5
6
7
8
9
<?php

namespace Cardinity\Exception;

class NotAcceptable extends Request
{
    protected $code = 406;
    protected $message = 'Not Acceptable – Wrong Accept headers sent in the request.';
}