From 2807274e2dca1780443bcbbab946b1551c4c88f5 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 19 Mar 2017 17:44:46 -0400 Subject: repo/webhook: able to retrigger delivery history (#2187) --- models/errors/webhook.go | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 models/errors/webhook.go (limited to 'models/errors/webhook.go') diff --git a/models/errors/webhook.go b/models/errors/webhook.go new file mode 100644 index 00000000..76cf8cb4 --- /dev/null +++ b/models/errors/webhook.go @@ -0,0 +1,34 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package errors + +import "fmt" + +type WebhookNotExist struct { + ID int64 +} + +func IsWebhookNotExist(err error) bool { + _, ok := err.(WebhookNotExist) + return ok +} + +func (err WebhookNotExist) Error() string { + return fmt.Sprintf("webhook does not exist [id: %d]", err.ID) +} + +type HookTaskNotExist struct { + HookID int64 + UUID string +} + +func IsHookTaskNotExist(err error) bool { + _, ok := err.(HookTaskNotExist) + return ok +} + +func (err HookTaskNotExist) Error() string { + return fmt.Sprintf("hook task does not exist [hook_id: %d, uuid: %s]", err.HookID, err.UUID) +} -- cgit v1.2.3