writefreely/errors.go
2018-10-16 20:31:07 -04:00

11 lines
225 B
Go

package writefreely
import (
"github.com/writeas/impart"
"net/http"
)
// Commonly returned HTTP errors
var (
ErrInternalCookieSession = impart.HTTPError{http.StatusInternalServerError, "Could not get cookie session."}
)