KCalendarCore::Exception Class

class KCalendarCore::Exception

Exception 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.

ConstantValueDescription
KCalendarCore::Exception::LoadError0Load error.
KCalendarCore::Exception::SaveError1Save error.
KCalendarCore::Exception::ParseErrorIcal2Parse error in libical.
KCalendarCore::Exception::ParseErrorKcal3Parse error in libkcal.
KCalendarCore::Exception::NoCalendar4No calendar component found.
KCalendarCore::Exception::CalVersion15vCalendar v1.0 detected.
KCalendarCore::Exception::CalVersion26iCalendar v2.0 detected.
KCalendarCore::Exception::CalVersionUnknown7Unknown calendar format detected.
KCalendarCore::Exception::Restriction8Restriction violation.
KCalendarCore::Exception::UserCancel9User canceled the operation.
KCalendarCore::Exception::NoWritableFound10No writable resource is available.
KCalendarCore::Exception::SaveErrorOpenFile11 
KCalendarCore::Exception::SaveErrorSaveFile12 
KCalendarCore::Exception::LibICalError13 
KCalendarCore::Exception::VersionPropertyMissing14 
KCalendarCore::Exception::ExpectedCalVersion215 
KCalendarCore::Exception::ExpectedCalVersion2Unknown16 
KCalendarCore::Exception::ParseErrorNotIncidence17 
KCalendarCore::Exception::ParseErrorEmptyMessage18 
KCalendarCore::Exception::ParseErrorUnableToParse19 
KCalendarCore::Exception::ParseErrorMethodProperty20 

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.