wiki.techinc.nl/includes/libs/filebackend/FileBackendError.php
Aaron Schulz c2acd8f642 Simplify and clean up FileBackend exceptions
Use standard exceptions for unexpected errors and remove
FileBackendException class, leaving FileBackendError. The
later is actually intended to be caught in some cases.

Change-Id: I735a525e0b14e518b2da5f18762e0f293064dfc2
2016-09-22 15:28:08 -07:00

9 lines
168 B
PHP

<?php
/**
* File backend exception for checked exceptions (e.g. I/O errors)
*
* @ingroup FileBackend
* @since 1.22
*/
class FileBackendError extends Exception {
}