ExceptionDO

/**
* @brief DO class: An exception.
*/

Primary key: element_hash_id: int

schema ExceptionDO {
  @primary element_hash_id: int,
  type_hash_id: int,
  callable_hash_id: int,
  name: string
}

ExceptionDO::getCallableHashId

/**
* @brief gets the callable hash id of this element.
* @return int
*/
pub fn getCallableHashId(self: ExceptionDO) -> int;

ExceptionDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: ExceptionDO) -> string;

ExceptionDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *ExceptionDO;

ExceptionDO::getTypeHashId

/**
* @brief gets the type hash id of this element.
* @return int
*/
pub fn getTypeHashId(self: ExceptionDO) -> int;