ViewCompilationException.php
TLDR
This file defines the ViewCompilationException
class which extends the Exception
class. It is used to handle exceptions related to view compilation.
Classes
ViewCompilationException
The ViewCompilationException
class extends the Exception
class. It is used to handle exceptions that occur during view compilation. This class does not have any additional functionality or methods.
<?php
namespace Illuminate\Contracts\View;
use Exception;
class ViewCompilationException extends Exception
{
//
}