# solid-performance/1.5.0/src/Performance/View/Exceptions/FileNotFoundException.php

Solid Performance – Your No-Code Caching, Performance, &amp; Page Speed Solution, version 1.5.0. 26 lines.

- Page: https://pluginprobe.com/plugins/solid-performance/1.5.0/code/src/Performance/View/Exceptions/FileNotFoundException.php
- Raw: https://pluginprobe.com/plugins/solid-performance/1.5.0/raw/src/Performance/View/Exceptions/FileNotFoundException.php
- Modified: 2025-02-13T01:04:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/solid-performance/1.5.0/code/src/Performance/View/Exceptions/FileNotFoundException.php#L10-L20`.

```php
<?php
/**
 * Thrown when a view object can't find its view file.
 *
 * @package SolidWP\Performance
 */

declare( strict_types=1 );

namespace SolidWP\Performance\View\Exceptions;

use Exception;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Thrown when a view object can't find its view file.
 *
 * @package SolidWP\Performance
 */
final class FileNotFoundException extends Exception {

}

```
