This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/jcalderonzumba/gastonjs/src/Exception/StatusFailError.php

18 lines
304 B
PHP

<?php
namespace Zumba\GastonJS\Exception;
/**
* Class StatusFailError
* @package Zumba\GastonJS\Exception
*/
class StatusFailError extends ClientError {
/**
* @return string
*/
public function message() {
return "Request failed to reach server, check DNS and/or server status";
}
}