5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 21:46:57 +00:00
matterbridge/vendor/github.com/Philipp15b/go-steam/tradeoffer/error.go
2017-06-22 01:00:27 +02:00

20 lines
423 B
Go

package tradeoffer
import (
"fmt"
)
// SteamError can be returned by Create, Accept, Decline and Cancel methods.
// It means we got response from steam, but it was in unknown format
// or request was declined.
type SteamError struct {
msg string
}
func (e *SteamError) Error() string {
return e.msg
}
func newSteamErrorf(format string, a ...interface{}) *SteamError {
return &SteamError{fmt.Sprintf(format, a...)}
}