Add exception for invalid mail addresses
This commit is contained in:
parent
8b4243c918
commit
295631b1ab
22
exceptions/generic/MDInvalidEmail.php
Normal file
22
exceptions/generic/MDInvalidEmail.php
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<?PHP
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception thrown in case the main entity of a page (e.g. an object, an institution etc.)
|
||||||
|
* are not set public.
|
||||||
|
*/
|
||||||
|
class MDInvalidEmail extends MDgenericInvalidInputsException {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Error message.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function errorMessage() {
|
||||||
|
//error message
|
||||||
|
$errorMsg = 'Input URL is invalid';
|
||||||
|
return $errorMsg;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user