This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/vendor/jcalderonzumba/gastonjs/src/Exception/StatusFailError.php

17 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";
}
}