ParseErrorFile

/**
* @brief A parsed error file.
*/

Inherit from ParseErrorFileDO

Primary key: element_oid: int

schema ParseErrorFile extends ParseErrorFileDO {
  @primary element_oid: int,
  relative_path: string,
  error_message: string,
  error_text: string
}

ParseErrorFile::getRelativePath

/**
* @brief gets the relative path of this element.
* @return string
*/
pub fn getRelativePath(self: ParseErrorFile) -> string;

ParseErrorFile::getErrorMessage

/**
* @brief gets the error message of this element.
* @return string
*/
pub fn getErrorMessage(self: ParseErrorFile) -> string;

ParseErrorFile::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *ParseErrorFile;

ParseErrorFile::getErrorText

/**
* @brief gets the error text of this element.
* @return string
*/
pub fn getErrorText(self: ParseErrorFile) -> string;