类:org.hl7.fhir.instance.model.DateAndTime 方法:setFraction(int fraction)
当分数为000时,失败。我在代码中看到
public void setFraction(int fraction) throws Exception {
this.fraction = fraction;
if (this.fraction == 0)
throw new Exception("set 'fractions' before setting 'fraction'");
}
检查“if(this.fraction == 0)”是否有错,应该是“if(this.fractions == 0)”吗?
答案 0 :(得分:0)
肯定是一个错误 - 意思是this.fractions。感谢
立即承诺,很快发布到网上