Files
fn-serverless/fn/errors.go
C Cirello c0512a4cbd fn: rename from fnctl (#321)
* fn: rename from fnctl

* fn: predicting the release version for installer

* fn: predicting the release version for installer
2016-11-21 17:24:26 +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}
}