Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
InternalException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2declare( strict_types = 1 );
3
4namespace Wikimedia\Parsoid\Core;
5
6/**
7 * Parsoid internal error that we don't know how to recover from.
8 * Likely a result of bad configuration / bad code / edge case.
9 */
10class InternalException extends \Exception {
11}