Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
BadRevisionException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Revision;
4
5/**
6 * Exception raised when the text of a revision is permanently missing or
7 * corrupt. This wraps BadBlobException which is thrown by the Storage layer.
8 * To mark a revision as permanently missing, use findBadBlobs.php.
9 */
10class BadRevisionException extends RevisionAccessException {
11
12}