Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
n/a
0 / 0
CRAP
n/a
0 / 0
FileBackendError
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace Wikimedia\FileBackend;
4
5use Exception;
6
7/**
8 * File backend exception for checked exceptions (e.g. I/O errors)
9 *
10 * @newable
11 * @stable to extend
12 * @ingroup FileBackend
13 * @since 1.22
14 */
15class FileBackendError extends Exception {
16}
17
18/** @deprecated class alias since 1.43 */
19class_alias( FileBackendError::class, 'FileBackendError' );