Add new exception MDBlacklistedInputException
This commit is contained in:
parent
e28439bd50
commit
498e362ab9
26
exceptions/updates/MDBlacklistedInputException.php
Normal file
26
exceptions/updates/MDBlacklistedInputException.php
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<?PHP
|
||||||
|
/**
|
||||||
|
* This file contains an exception class to be raised if a blacklisted input is resubmitted.
|
||||||
|
* is invalid.
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
||||||
|
*/
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception class to be raised if a blacklisted input is resubmitted.
|
||||||
|
*/
|
||||||
|
final class MDBlacklistedInputException extends MDgenericInvalidInputsException {
|
||||||
|
/**
|
||||||
|
* Error message.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function errorMessage() {
|
||||||
|
//error message
|
||||||
|
return 'PGP key is invalid. ' . $this->getMessage();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user