1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
<?php
namespace Antavo\RestClient\Exceptions;
/**
* Exception thrown when response has a status code other than <tt>200 OK</tt>.
*
* Exception code holds the received HTTP status code, while message holds its
* textual representation (e.g.: <tt>Bad Request</tt>).
*/
class StatusCodeException extends Exception {}