enum Core::Errors::ErrorCodes

Overview

#include <coreproperty.h>

enum ErrorCodes
{
    kError_NoError         = 0,
    kError_ItemNotFound    = 100,
    kError_InvalidArgument,
    kError_InvalidThread,
    kError_OutOfMemory,
    kError_InvalidState,
    kError_NotReady,
    kError_NotImplemented,
    kError_Failed,
};

Detailed Documentation

Enum Values

kError_NoError

no error

kError_ItemNotFound

item could not be found

kError_InvalidArgument

invalid argument passed to function

kError_InvalidThread

function cannot be called on the current thread

kError_OutOfMemory

out of memory

kError_InvalidState

object in wrong state

kError_NotReady

function called too early

kError_NotImplemented

function not implemented

kError_Failed

function failed (unspecified cause)