felixarntz/oop-admin-pages

View on GitHub
src/Exception/Admin_Page_Not_Found_Exception.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Admin_Page_Not_Found_Exception class
 *
 * @package Leaves_And_Love\OOP_Admin_Pages\Exception
 * @since 1.0.0
 */

namespace Leaves_And_Love\OOP_Admin_Pages\Exception;

use Exception;

/**
 * Exception thrown when an admin page is not found in a collection.
 *
 * @since 1.0.0
 */
class Admin_Page_Not_Found_Exception extends Exception {

}