mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
19 lines
270 B
Go
19 lines
270 B
Go
package reddit
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
type ServerError struct {
|
|
StatusCode int
|
|
}
|
|
|
|
func (se ServerError) Error() string {
|
|
return fmt.Sprintf("errror from reddit: %d", se.StatusCode)
|
|
}
|
|
|
|
var (
|
|
// ErrOauthRevoked .
|
|
ErrOauthRevoked = errors.New("oauth revoked")
|
|
)
|