botamp/botamp-php

View on GitHub
lib/Botamp/Exceptions/NotAcceptable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Botamp\Exceptions;

class NotAcceptable extends Base
{
    public function __construct()
    {
        parent::__construct("The request content type must be set to application/vnd.api+json.");
    }
}