master

laravel/framework

Last updated at: 29/12/2023 09:22

ViteManifestNotFoundException.php

TLDR

This file contains the ViteManifestNotFoundException class, which extends the Exception class.

Classes

ViteManifestNotFoundException

This class is a custom exception class that extends the Exception class. It represents an exception that is thrown when the Vite manifest file is not found.

<?php

namespace Illuminate\Foundation;

use Exception;

class ViteManifestNotFoundException extends Exception
{
    //
}