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
9 lines
168 B
PHP
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 {
|
|
}
|