mirror of
https://github.com/Chipazawra/v8-1c-cluster-pde.git
synced 2025-03-29 21:47:13 +02:00
16 lines
217 B
Go
16 lines
217 B
Go
package messages
|
|
|
|
type UnknownMessageError struct {
|
|
Type byte
|
|
Data []byte
|
|
EndpointID int
|
|
Err error
|
|
ServiceID string
|
|
}
|
|
|
|
func (m *UnknownMessageError) Error() string {
|
|
|
|
return m.Err.Error()
|
|
|
|
}
|