Files
fn-serverless/cli/errors.go
Travis Reeder 48e3781d5e Rename to GitHub (#3)
* circle

* Rename to github and fn->cli

*  Rename to github and fn->cli
2017-07-26 10:50:19 -07:00

14 lines
191 B
Go

package main
type notFoundError struct {
S string
}
func (e *notFoundError) Error() string {
return e.S
}
func newNotFoundError(s string) *notFoundError {
return &notFoundError{S: s}
}