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

namespace Cardinity\Exception;

class MethodNotAllowed extends Request
{
    protected $code = 405;
    protected $message = 'Method Not Allowed – You tried to access a resource using an invalid HTTP method.';
}