Add new MDUploadFailedException

This commit is contained in:
2026-05-31 11:25:20 +02:00
parent a5c75d54f4
commit a01f06a00f
@@ -0,0 +1,18 @@
<?PHP
declare(strict_types = 1);
/**
* Exception thrown in case an upload fails.
*/
class MDUploadFailedException extends MDgenericInvalidInputsException {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'Inputs are not valid.';
}
}