3bf54274c3
This commit implements redfish remote direct subcommand under bootstrap. Change-Id: Idf97445f6fa59a77145eae1edaa15b1d22723f19 Signed-off-by: Kanwar Saad Bin Liaqat <kanwar.sbl@gmail.com>
15 lines
292 B
Go
15 lines
292 B
Go
package error
|
|
|
|
// AirshipError is the base error type
|
|
// used to create extended error types
|
|
// in other airshipctl packages.
|
|
type AirshipError struct {
|
|
Message string
|
|
}
|
|
|
|
// Error function implments the golang
|
|
// error interface
|
|
func (ae *AirshipError) Error() string {
|
|
return ae.Message
|
|
}
|