Files
fn-serverless/fnctl/errors.go
Travis Reeder 0d71e1e38e Docs update with new fnctl commands (#273)
* Added high level roadmap.

* Changed to funtion.yaml.

* Added logo

* updating quickstart code example, WIP, waiting on another merge.

* Minor updates.

* Changed function.yaml to func.yaml and updated fnctl README.
2016-11-15 01:40:05 +01: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}
}