Use dedicated exceptions if unlinking failed for reasons other than the

file not existing
This commit is contained in:
2025-03-25 14:57:29 +01:00
parent b9d82d672a
commit 5433811176
3 changed files with 45 additions and 1 deletions

View File

@ -0,0 +1,18 @@
<?PHP
declare(strict_types = 1);
/**
* Reports a failure to create a new directory.
*/
final class MDFailedToDeleteFile extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'Failed to delete file';
}
}

View File

@ -0,0 +1,18 @@
<?PHP
declare(strict_types = 1);
/**
* Reports a failure due to insufficient permissions in the file system.
*/
final class MDFilePermissionsException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'Insufficient file system permissions';
}
}