blueprint: document error type

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2019-10-21 15:07:28 +02:00 committed by Lars Karlitski
parent c51f1833f9
commit b63cda530e

View file

@ -3,10 +3,13 @@
package blueprint
import (
"github.com/osbuild/osbuild-composer/internal/pipeline"
"sort"
"github.com/osbuild/osbuild-composer/internal/pipeline"
)
// An InvalidOutputFormatError is returned when a requested output format is
// not supported. The requested format is included as the error message.
type InvalidOutputFormatError struct {
message string
}