Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
PageNumberNotFoundException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace ProofreadPage;
4
5use RuntimeException;
6
7/**
8 * @license GPL-2.0-or-later
9 *
10 * An exception thrown if a page number is not found
11 */
12class PageNumberNotFoundException extends RuntimeException {
13}