1 <?php 2 3 namespace wataridori\ChatworkSDK\Exception; 4 5 class RequestFailException extends \Exception 6 { 7 public function getName() 8 { 9 return 'Request fail'; 10 } 11 } 12