BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
igaster
/
laravel-theme
/
src
/
Exceptions
📤 Upload
📝 New File
📁 New Folder
Close
Editing: themeException.php
<?php namespace Igaster\LaravelTheme\Exceptions; /** * Define a custom exception class */ class themeException extends \Exception{ // Redefine the exception so message isn't optional public function __construct($message, $code = 0, Exception $previous = null) { $message .= ", Current Theme: [".\Theme::get()."]"; // make sure everything is assigned properly parent::__construct($message, $code, $previous); } }
Save
Cancel