Version 1
[yaffs-website] / vendor / jcalderonzumba / gastonjs / src / Exception / StatusFailError.php
1 <?php
2
3 namespace Zumba\GastonJS\Exception;
4
5
6 /**
7  * Class StatusFailError
8  * @package Zumba\GastonJS\Exception
9  */
10 class StatusFailError extends ClientError {
11   /**
12    * @return string
13    */
14   public function message() {
15     return "Request failed to reach server, check DNS and/or server status";
16   }
17 }