uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
codeskitter.com
/
..
/
api.xalonx.com
/
app
/
Exceptions
/
Handler.php
/
/
<?php namespace App\Exceptions; use Illuminate\Validation\ValidationException; use Illuminate\Auth\Access\AuthorizationException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Throwable; class Handler extends ExceptionHandler { /** * The list of the inputs that are never flashed to the session on validation exceptions. * * @var array<int, string> */ protected $dontFlash = [ 'current_password', 'password', 'password_confirmation', ]; /** * Register the exception handling callbacks for the application. */ public function register(): void { $this->reportable(function (Throwable $e) { if ($e instanceof ValidationException) { $json = [ 'error' => $e->validator->errors(), 'status_code' => 500 ]; } elseif ($e instanceof AuthorizationException) { $json = [ 'error' => 'You are not allowed to do this action.', 'status_code' => 403 ]; } elseif ($e instanceof NotFoundHttpException) { $json = [ 'error' => 'Sorry, the page you are looking for could not be found.', 'status_code' => 403, ]; } else { $json = [ 'error' => (app()->environment() !== 'production') ? $e->getMessage() : 'An error has occurred.', 'status_code' => 500 ]; } return response()->json($json, 500); }); } }
/home/users/unlimited/www/codeskitter.com/../api.xalonx.com/app/Exceptions/Handler.php