Loading...
Searching...
No Matches
Go to the documentation of this file. 1#ifndef CNSDK_LEIA_CORE_CXX_EXCEPTION_HPP
2#define CNSDK_LEIA_CORE_CXX_EXCEPTION_HPP
14# define LEIA_WRAPPER_DISABLE_EXCEPTION
17#if !defined(LEIA_WRAPPER_DISABLE_EXCEPTION)
23#if !defined(LEIA_WRAPPER_DISABLE_EXCEPTION)
28struct CoreException :
public std::exception {
29 const char* what()
const noexcept override
31 return "core generic error";
38struct CoreInitFailed :
public CoreException {
39 const char* what()
const noexcept override
41 return "initialization failed";