1: <?php
2:
3: namespace RedBeanPHP;
4:
5: /**
6: * RedBean\Exception Base.
7: * Represents the base class for RedBeanPHP\Exceptions.
8: *
9: * @file RedBeanPHP/Exception.php
10: * @author Gabor de Mooij and the RedBeanPHP Community
11: * @license BSD/GPLv2
12: *
13: * @copyright
14: * copyright (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community
15: * This source file is subject to the BSD/GPLv2 License that is bundled
16: * with this source code in the file license.txt.
17: */
18: class RedException extends \Exception
19: {
20: }
21: