13 Star 21 Fork 1

ShirDon-廖显东 / EasyMIDI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
error.go 223 Bytes
一键复制 编辑 原始数据 按行查看 历史
package smf
//MidiError error type for midi package
type MidiError struct {
errorString string
}
// Error implements standart error interface
func (m *MidiError) Error() string {
return "Midi error: " + m.errorString
}
Go
1
https://gitee.com/shirdonl/EasyMIDI.git
git@gitee.com:shirdonl/EasyMIDI.git
shirdonl
EasyMIDI
EasyMIDI
04cc0457db73

搜索帮助