Fix bug in MDInvalidCsv

This commit is contained in:
Joshua Ramon Enslin 2023-07-26 14:39:31 +02:00
parent a34ae51a0e
commit e28439bd50
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -13,7 +13,7 @@ final class MDInvalidCsv extends Exception {
*/
public function errorMessage() {
//error message
return 'Invalid input CSV: ' . $e->getMessage();
return 'Invalid input CSV: ' . $this->getMessage();
}
}