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

namespace Cardinity\Exception;

class NotFound extends Request
{
    protected $code = 404;
    protected $message = 'Not Found – The specified resource could not be found.';
}