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
*/
- Parameter
self
:ExceptionDO
- Return
int
pub fn getCallableHashId(self: ExceptionDO) -> int;
ExceptionDO::getName
/**
* @brief gets the name of this element.
* @return string
*/
- Parameter
self
:ExceptionDO
- Return
string
pub fn getName(self: ExceptionDO) -> string;
ExceptionDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ExceptionDO
pub fn __all__(db: JavaDB) -> *ExceptionDO;
ExceptionDO::getTypeHashId
/**
* @brief gets the type hash id of this element.
* @return int
*/
- Parameter
self
:ExceptionDO
- Return
int
pub fn getTypeHashId(self: ExceptionDO) -> int;