function setId(id) {
    if (typeof id !== "number") {
        throw new ExtError("ERR_ID_MUST_BE_INTEGER", "ID must be 'integer'");
    }
    this.message.id = id;