aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs/filebackend/FileBackendError.php
blob: d0692f4622db285dff066a165af9d1befd646b9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace Wikimedia\FileBackend;

use Exception;

/**
 * File backend exception for checked exceptions (e.g. I/O errors)
 *
 * @newable
 * @stable to extend
 * @ingroup FileBackend
 * @since 1.22
 */
class FileBackendError extends Exception {
}

/** @deprecated class alias since 1.43 */
class_alias( FileBackendError::class, 'FileBackendError' );