mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 16:31:48 -04:00
16 lines
403 B
Go
16 lines
403 B
Go
// Copyright IBM Corp. 2013, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package registry
|
|
|
|
// ErrBuildAlreadyDone is the error returned by an HCP handler when a build cannot be started since it's already
|
|
// marked as DONE.
|
|
type ErrBuildAlreadyDone struct {
|
|
Message string
|
|
}
|
|
|
|
// Error returns the message for the ErrBuildAlreadyDone type
|
|
func (b ErrBuildAlreadyDone) Error() string {
|
|
return b.Message
|
|
}
|