oxtotp/src/Application/Model/Exceptions/d3totp_wrongOtpException.php

33 lines
930 B
PHP
Raw Normal View History

2018-10-20 23:39:22 +02:00
<?php
/**
2022-09-26 15:22:26 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2018-10-20 23:39:22 +02:00
*
2022-09-26 15:22:26 +02:00
* https://www.d3data.de
2018-10-20 23:39:22 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-09-26 15:22:26 +02:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2018-10-20 23:39:22 +02:00
*/
namespace D3\Totp\Application\Model\Exceptions;
use Exception;
2018-10-20 23:39:22 +02:00
use OxidEsales\Eshop\Core\Exception\StandardException;
class d3totp_wrongOtpException extends StandardException
{
/**
* Default constructor
*
* @param string $sMessage exception message
* @param integer $iCode exception code
* @param Exception|null $previous previous exception
2018-10-20 23:39:22 +02:00
*/
public function __construct($sMessage = "D3_TOTP_ERROR_UNVALID", $iCode = 0, Exception $previous = null)
2018-10-20 23:39:22 +02:00
{
parent::__construct($sMessage, $iCode, $previous);
}
}