Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
BuildWarning
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Hyde\Framework\Exceptions;
6
7use RuntimeException;
8
9/**
10 * @experimental Having a class like this extending an exception means it's easy to throw if enabled, however,
11 *               it's not required for the build warnings feature and may be replaced by a simple array.
12 */
13class BuildWarning extends RuntimeException
14{
15    //
16}