File indexing completed on 2024-12-15 03:45:05
0001 <?php 0002 /* 0003 SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org> 0004 0005 SPDX-License-Identifier: MIT 0006 */ 0007 0008 /** Exception mapping to HTTP error codes. */ 0009 class RESTException extends Exception 0010 { 0011 public function __construct($message, $code = 500) 0012 { 0013 parent::__construct($message, $code); 0014 } 0015 } 0016 0017 ?> 0018