Move some FileBackend related classes to /libs
[lhc/web/wiklou.git] / includes / libs / filebackend / FileBackendException.php
1 <?php
2 /**
3 * Generic file backend exception for checked and unexpected (e.g. config) exceptions
4 *
5 * @ingroup FileBackend
6 * @since 1.23
7 */
8 class FileBackendException extends Exception {
9 }
10
11 /**
12 * File backend exception for checked exceptions (e.g. I/O errors)
13 *
14 * @ingroup FileBackend
15 * @since 1.22
16 */
17 class FileBackendError extends FileBackendException {
18 }