aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/symfony/form/Symfony/Component/Form/Exception/AlreadyBoundException.php
blob: 7ef0ca02e8a4f8807e37a1f6e7a41a9e392f9e27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Form\Exception;

/**
 * Alias of {@link AlreadySubmittedException}.
 *
 * @deprecated Deprecated since version 2.3, to be removed in 3.0. Use
 *             {@link AlreadySubmittedException} instead.
 */
class AlreadyBoundException extends LogicException
{
}