add backend controller for users
This commit is contained in:
@ -15,7 +15,13 @@
|
||||
|
||||
namespace D3\Linkmobility4OXID\Application\Model\Exceptions;
|
||||
|
||||
class noRecipientFoundException implements abortSendingExceptionInterface
|
||||
{
|
||||
use Exception;
|
||||
use OxidEsales\Eshop\Core\Exception\StandardException;
|
||||
|
||||
class noRecipientFoundException extends StandardException implements abortSendingExceptionInterface
|
||||
{
|
||||
public function __construct( $sMessage = "D3LM_EXC_NO_RECIPIENT_SET", $iCode = 0, Exception $previous = null )
|
||||
{
|
||||
parent::__construct( $sMessage, $iCode, $previous );
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user