ParseErrorFileDO

/**
* @brief DO class: A parsed error file.
*/

Primary key: element_oid: int

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

ParseErrorFileDO::getErrorText

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

ParseErrorFileDO::getErrorMessage

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

ParseErrorFileDO::__all__

Data constraint method.

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

ParseErrorFileDO::getRelativePath

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