pelican/internal/database/errors.go

12 lines
190 B
Go
Raw Normal View History

package database
import "fmt"
type bucketNotExistError struct {
bucket string
}
func (e bucketNotExistError) Error() string {
return fmt.Sprintf("bucket %s does not exist", e.bucket)
}