summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Philipp15b/go-steam/tradeoffer/error.go
blob: 439ee69cd29f9c93a078db686f7ef7588518d070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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...)}
}