mirror of https://github.com/portainer/portainer
16 lines
249 B
Go
16 lines
249 B
Go
|
package edgestacks
|
||
|
|
||
|
type InvalidPayloadError struct {
|
||
|
msg string
|
||
|
}
|
||
|
|
||
|
func (e *InvalidPayloadError) Error() string {
|
||
|
return e.msg
|
||
|
}
|
||
|
|
||
|
func NewInvalidPayloadError(errMsg string) *InvalidPayloadError {
|
||
|
return &InvalidPayloadError{
|
||
|
msg: errMsg,
|
||
|
}
|
||
|
}
|