MDErrorReporter/exceptions/updates/MDInvalidLengthUnit.php

27 lines
613 B
PHP

<?PHP
/**
* This file contains an exception class for usage of unaccepted length units.
*
* @file
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Custom exception class to be raised when trying to use a length unit that is not
* accepted by museum-digital.
*/
final class MDInvalidLengthUnit extends MDgenericInvalidInputsException {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'The following length unit is not available: ' . $this->getMessage();
}
}