aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/error.go')
-rw-r--r--plumbing/error.go35
1 files changed, 35 insertions, 0 deletions
diff --git a/plumbing/error.go b/plumbing/error.go
new file mode 100644
index 0000000..a3ebed3
--- /dev/null
+++ b/plumbing/error.go
@@ -0,0 +1,35 @@
+package plumbing
+
+import "fmt"
+
+type PermanentError struct {
+ Err error
+}
+
+func NewPermanentError(err error) *PermanentError {
+ if err == nil {
+ return nil
+ }
+
+ return &PermanentError{Err: err}
+}
+
+func (e *PermanentError) Error() string {
+ return fmt.Sprintf("permanent client error: %s", e.Err.Error())
+}
+
+type UnexpectedError struct {
+ Err error
+}
+
+func NewUnexpectedError(err error) *UnexpectedError {
+ if err == nil {
+ return nil
+ }
+
+ return &UnexpectedError{Err: err}
+}
+
+func (e *UnexpectedError) Error() string {
+ return fmt.Sprintf("unexpected client error: %s", e.Err.Error())
+}