KCalendarCore::Exception Class
class KCalendarCore::ExceptionException base class, currently used as a fancy kind of error code and not as an C++ exception. More...
Header: | #include <KCalendarCore/Exception> |
CMake: | find_package(KF6 REQUIRED COMPONENTS CalendarCore) target_link_libraries(mytarget PRIVATE KF6::CalendarCore) |
Public Types
enum | ErrorCode { LoadError, SaveError, ParseErrorIcal, ParseErrorKcal, NoCalendar, …, ParseErrorMethodProperty } |
Public Functions
Exception(const KCalendarCore::Exception::ErrorCode code, const QStringList &arguments = QStringList()) | |
virtual | ~Exception() |
virtual QStringList | arguments() const |
virtual KCalendarCore::Exception::ErrorCode | code() const |
Detailed Description
Member Type Documentation
enum Exception::ErrorCode
The different types of error codes.
Constant | Value | Description |
---|---|---|
KCalendarCore::Exception::LoadError | 0 | Load error. |
KCalendarCore::Exception::SaveError | 1 | Save error. |
KCalendarCore::Exception::ParseErrorIcal | 2 | Parse error in libical. |
KCalendarCore::Exception::ParseErrorKcal | 3 | Parse error in libkcal. |
KCalendarCore::Exception::NoCalendar | 4 | No calendar component found. |
KCalendarCore::Exception::CalVersion1 | 5 | vCalendar v1.0 detected. |
KCalendarCore::Exception::CalVersion2 | 6 | iCalendar v2.0 detected. |
KCalendarCore::Exception::CalVersionUnknown | 7 | Unknown calendar format detected. |
KCalendarCore::Exception::Restriction | 8 | Restriction violation. |
KCalendarCore::Exception::UserCancel | 9 | User canceled the operation. |
KCalendarCore::Exception::NoWritableFound | 10 | No writable resource is available. |
KCalendarCore::Exception::SaveErrorOpenFile | 11 | |
KCalendarCore::Exception::SaveErrorSaveFile | 12 | |
KCalendarCore::Exception::LibICalError | 13 | |
KCalendarCore::Exception::VersionPropertyMissing | 14 | |
KCalendarCore::Exception::ExpectedCalVersion2 | 15 | |
KCalendarCore::Exception::ExpectedCalVersion2Unknown | 16 | |
KCalendarCore::Exception::ParseErrorNotIncidence | 17 | |
KCalendarCore::Exception::ParseErrorEmptyMessage | 18 | |
KCalendarCore::Exception::ParseErrorUnableToParse | 19 | |
KCalendarCore::Exception::ParseErrorMethodProperty | 20 |
Member Function Documentation
[explicit]
Exception::Exception(const KCalendarCore::Exception::ErrorCode code, const QStringList &arguments = QStringList())
Construct an exception.
code is the error code.
arguments is a list of arguments that can be passed to an i18n engine to help build a descriptive message for the user, a common argument is for example the filename where the error occurred.
[virtual noexcept]
Exception::~Exception()
Destructor.
[virtual]
QStringList Exception::arguments() const
Returns the arguments. Returns A QStringList with the argument list for this exception.
[virtual]
KCalendarCore::Exception::ErrorCode Exception::code() const
Returns the error code. Returns The ErrorCode for this exception.