ApiNotFoundException.php 142 B

12345678910
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\ApiClient;
  4. /** 404 from the api. */
  5. final class ApiNotFoundException extends ApiException
  6. {
  7. }