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' );