From 9e9ca66467116e9079a2639c00e9e623aca23015 Mon Sep 17 00:00:00 2001 From: ᴜɴᴋɴᴡᴏɴ Date: Mon, 16 Mar 2020 01:22:27 +0800 Subject: refactor: unify error handling in routing layer --- internal/osutil/error.go | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 internal/osutil/error.go (limited to 'internal/osutil/error.go') diff --git a/internal/osutil/error.go b/internal/osutil/error.go new file mode 100644 index 00000000..8f312aa9 --- /dev/null +++ b/internal/osutil/error.go @@ -0,0 +1,27 @@ +// Copyright 2020 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 osutil + +import ( + "os" + + "gogs.io/gogs/internal/errutil" +) + +var _ errutil.NotFound = (*Error)(nil) + +// Error is a wrapper of an OS error, which handles not found. +type Error struct { + error +} + +func (e Error) NotFound() bool { + return e.error == os.ErrNotExist +} + +// NewError wraps given error. +func NewError(err error) error { + return Error{error: err} +} -- cgit v1.2.3