From ef00f9d2033f6de11e71bf3a909399cae6f73a9f Mon Sep 17 00:00:00 2001 From: ArthurHoaro <arthur@hoa.ro> Date: Wed, 27 May 2020 13:35:48 +0200 Subject: Process password change controller through Slim --- application/front/exceptions/WrongTokenException.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 application/front/exceptions/WrongTokenException.php (limited to 'application/front/exceptions/WrongTokenException.php') diff --git a/application/front/exceptions/WrongTokenException.php b/application/front/exceptions/WrongTokenException.php new file mode 100644 index 00000000..42002720 --- /dev/null +++ b/application/front/exceptions/WrongTokenException.php @@ -0,0 +1,18 @@ +<?php + +declare(strict_types=1); + +namespace Shaarli\Front\Exception; + +/** + * Class OpenShaarliPasswordException + * + * Raised if the user tries to perform an action with an invalid XSRF token. + */ +class WrongTokenException extends ShaarliFrontException +{ + public function __construct() + { + parent::__construct(t('Wrong token.'), 403); + } +} -- cgit v1.2.3