diff options
Diffstat (limited to 'Acl/Exception/Exception.php')
-rw-r--r-- | Acl/Exception/Exception.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Acl/Exception/Exception.php b/Acl/Exception/Exception.php new file mode 100644 index 0000000..0e0add3 --- /dev/null +++ b/Acl/Exception/Exception.php @@ -0,0 +1,21 @@ +<?php + +namespace Symfony\Component\Security\Acl\Exception; + +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier <fabien.potencier@symfony-project.com> + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * Base ACL exception + * + * @author Johannes M. Schmitt <schmittjoh@gmail.com> + */ +class Exception extends \Exception +{ +}
\ No newline at end of file |