package crash; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.lang.Math; import java.time.ZonedDateTime;; public class Exec { static final Logger LOG = LoggerFactory.getLogger(Exec.class); public Long seqNum; public String executionId; public String symbol; public Exec() { } public Exec(Long seqNum) { this.seqNum = seqNum; executionId = seqNum.toString(); symbol = seqNum.toString(); } }