From b596568db93938432dd846acd2576555e5792cd8 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Mon, 15 Feb 2021 15:36:09 +0100 Subject: [PATCH] [Workflow] Re-add InvalidTokenConfigurationException for BC --- .../InvalidTokenConfigurationException.php | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/Symfony/Component/Workflow/Exception/InvalidTokenConfigurationException.php diff --git a/src/Symfony/Component/Workflow/Exception/InvalidTokenConfigurationException.php b/src/Symfony/Component/Workflow/Exception/InvalidTokenConfigurationException.php new file mode 100644 index 0000000000..a70fd4c98d --- /dev/null +++ b/src/Symfony/Component/Workflow/Exception/InvalidTokenConfigurationException.php @@ -0,0 +1,21 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Workflow\Exception; + +/** + * Thrown by GuardListener when there is no token set, but guards are placed on a transition. + * + * @author Matt Johnson + */ +class InvalidTokenConfigurationException extends LogicException +{ +}