QSettingsDialog  1.0.0
A Qt library to easily create a settings dialog for user configurable settings
exceptions.h
1 #ifndef EXCEPTIONS_H
2 #define EXCEPTIONS_H
3 
4 #include "qsettingsdialog_global.h"
5 #include "qtexception.h"
6 
12 class QSETTINGSDIALOGSHARED_EXPORT InvalidContainerPathException : public QtException
14 {
15 public:
17 };
18 
20 class QSETTINGSDIALOGSHARED_EXPORT LayoutPropertyNotDefinedException : public QtException
21 {
22 public:
24 };
25 
27 class QSETTINGSDIALOGSHARED_EXPORT InvalidTargetLayoutException : public QtException
28 {
29 public:
31 };
33 
34 #endif // EXCEPTIONS_H
An exception that will be thrown if an invalid container path is used.
Definition: exceptions.h:13
A basic exception type for Qt Exceptions.
Definition: qtexception.h:9
An exception that indicates you are trying to access an undefined property in a QSettingsLayout.
Definition: exceptions.h:20
An exception that is thrown if you try to add an element to a QSettingsLayout that does not accept th...
Definition: exceptions.h:27