From: Alexander Ebert Date: Wed, 12 Feb 2014 20:57:12 +0000 (+0100) Subject: Added missing class X-Git-Tag: 2.0.3~43 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=aeb4221fbe06919ed2ca4585f92b7e75231a6484;p=GitHub%2FWoltLab%2FWCF.git Added missing class --- diff --git a/wcfsetup/install/files/lib/system/exception/InvalidSecurityTokenException.class.php b/wcfsetup/install/files/lib/system/exception/InvalidSecurityTokenException.class.php new file mode 100644 index 0000000000..bce56e1cc3 --- /dev/null +++ b/wcfsetup/install/files/lib/system/exception/InvalidSecurityTokenException.class.php @@ -0,0 +1,22 @@ + + * @package com.woltlab.wcf + * @subpackage system.exception + * @category Community Framework + */ +class InvalidSecurityTokenException extends UserException { + /** + * Creates a new InvalidSecurityTokenException object. + */ + public function __construct() { + parent::__construct(WCF::getLanguage()->get('wcf.ajax.error.sessionExpired')); + } +}