summaryrefslogtreecommitdiffstats
path: root/Acl/Exception/ConcurrentModificationException.php
blob: fd65c2b1c39a5abf381aeadf52af29bb10c4f003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Symfony\Component\Security\Acl\Exception;

/**
 * This exception is thrown whenever you change shared properties of more than
 * one ACL of the same class type concurrently.
 *
 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
 */
class ConcurrentModificationException extends Exception
{
}