1: <?php
2: namespace Dropbox;
3:
4: /**
5: * Thrown by the <code>AppInfo::loadXXX</code> methods if something goes wrong.
6: */
7: final class AppInfoLoadException extends \Exception
8: {
9: /**
10: * @param string $message
11: *
12: * @internal
13: */
14: function __construct($message)
15: {
16: parent::__construct($message);
17: }
18: }
19: