X7ROOT File Manager
Current Path:
/home/notabjze/just4dastreets.com/libraries/src/Error/JsonApi
home
/
notabjze
/
just4dastreets.com
/
libraries
/
src
/
Error
/
JsonApi
/
ðŸ“
..
📄
AuthenticationFailedExceptionHandler.php
(1.35 KB)
📄
CheckinCheckoutExceptionHandler.php
(1.3 KB)
📄
InvalidParameterExceptionHandler.php
(938 B)
📄
InvalidRouteExceptionHandler.php
(1.36 KB)
📄
NotAcceptableExceptionHandler.php
(1.34 KB)
📄
NotAllowedExceptionHandler.php
(1.33 KB)
📄
ResourceNotFoundExceptionHandler.php
(1.33 KB)
📄
SaveExceptionHandler.php
(1.26 KB)
📄
SendEmailExceptionHandler.php
(1.27 KB)
Editing: InvalidParameterExceptionHandler.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE */ namespace Joomla\CMS\Error\JsonApi; \defined('JPATH_PLATFORM') or die; use Exception; use Tobscure\JsonApi\Exception\Handler\ResponseBag; /** * Handler for invalid param * * @since 4.0.0 */ class InvalidParameterExceptionHandler extends \Tobscure\JsonApi\Exception\Handler\InvalidParameterExceptionHandler { /** * Handle the provided exception. * * @param Exception $e The exception being handled * * @return \Tobscure\JsonApi\Exception\Handler\ResponseBag * * @since 4.0.0 */ public function handle(Exception $e) { $status = 400; $error = ['title' => $e->getMessage()]; $code = $e->getCode(); if ($code) { $error['code'] = $code; } return new ResponseBag($status, [$error]); } }
Upload File
Create Folder