OpenClonk
C4AulExecError Class Reference

#include <C4Aul.h>

Inheritance diagram for C4AulExecError:
[legend]
Collaboration diagram for C4AulExecError:
[legend]

Public Member Functions

 C4AulExecError (const char *szError)
 
const char * what () const noexcept override
 

Protected Attributes

StdCopyStrBuf sMessage
 

Detailed Description

Definition at line 62 of file C4Aul.h.

Constructor & Destructor Documentation

◆ C4AulExecError()

C4AulExecError::C4AulExecError ( const char *  szError)

Definition at line 31 of file C4AulExec.cpp.

32 {
33  assert(szError);
34  // direct error message string
35  sMessage.Copy(szError ? szError : "(no error message)");
36 }
StdCopyStrBuf sMessage
Definition: C4Aul.h:44
void Copy()
Definition: StdBuf.h:467

References StdStrBuf::Copy(), and C4AulError::sMessage.

Here is the call graph for this function:

Member Function Documentation

◆ what()

const char * C4AulError::what ( ) const
overridenoexceptinherited

Definition at line 59 of file C4Aul.cpp.

60 {
61  return sMessage ? sMessage.getData() : "(unknown error)";
62 }
const char * getData() const
Definition: StdBuf.h:442

References StdStrBuf::getData(), and C4AulError::sMessage.

Referenced by C4PropList::Call(), C4AulFunc::CheckParTypes(), C4AulExec::DirectExec(), C4AulScriptEngine::Link(), C4AulParse::Parse_Script(), C4AulCompiler::PreparseAstVisitor::visit(), and C4AulCompiler::ConstantResolver::visit().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ sMessage

StdCopyStrBuf C4AulError::sMessage
protectedinherited

Definition at line 44 of file C4Aul.h.

Referenced by C4AulExecError(), C4AulParseError::C4AulParseError(), and C4AulError::what().


The documentation for this class was generated from the following files: