1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php /** * File system write error. * Generally thrown from Loco_fs_FileWriter */ class Loco_error_WriteException extends Loco_error_Exception {
/** * {@inheritdoc} */ public function getTitle(){ return __('Permission denied','loco-translate'); }
}
|