package QuectelAT const ( ERROR = "ERROR" ) type SentenceERROR struct { Type string err error } func (s SentenceERROR) DataType() string { return ERROR } func NewERROR() Sentence { return SentenceERROR{} }