FOSSology  4.4.0
Open Source License Compliance by Open Source Software
HttpServiceUnavailableException.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2023 Siemens AG
4  SPDX-FileContributor: Gaurav Mishra <mishra.gaurav@siemens.com>
5 
6  SPDX-License-Identifier: GPL-2.0-only
7  */
8 
9 namespace Fossology\UI\Api\Exceptions;
10 
11 use Throwable;
12 
17 {
18  public function __construct(string $message, ?Throwable $previous = null)
19  {
20  parent::__construct($message, 503, $previous);
21  }
22 }