예제 #1
0
파일: gammu.go 프로젝트: ziutek/gogammu
func (e Error) Error() string {
	return fmt.Sprintf(
		"[%s] %s", e.descr, C.GoString(C.GSM_ErrorString(C.GSM_Error(e.g))),
	)
}
예제 #2
0
파일: gammu.go 프로젝트: ziutek/gogammu
func (e EncodeError) Error() string {
	return fmt.Sprintf(
		"[EncodeMultiPartSMS] %s", C.GoString(C.GSM_ErrorString(C.GSM_Error(e.g))),
	)
}
예제 #3
0
파일: gsm.go 프로젝트: gen2brain/gsmgo
// Returns error message string
func errorString(e int) string {
	return C.GoString(C.GSM_ErrorString(C.GSM_Error(e)))
}