Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
fad498e8
Commit
fad498e8
authored
Aug 03, 2016
by
fibonacci1729
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added / documented common errors
parent
967e438b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
driver.go
pkg/storage/driver/driver.go
+7
-4
No files found.
pkg/storage/driver/driver.go
View file @
fad498e8
...
...
@@ -22,9 +22,11 @@ import (
var
(
// ErrReleaseNotFound indicates that a release is not found.
ErrReleaseNotFound
=
errors
.
New
(
"release not found"
)
// Temporary error while WIP.
ErrNotImplemented
=
errors
.
New
(
"not implemented"
)
ErrReleaseNotFound
=
errors
.
New
(
"release: not found"
)
// ErrReleaseExists indicates that a release already exists.
ErrReleaseExists
=
errors
.
New
(
"release: already exists"
)
// ErrDriverAction indicates the storage driver failed to execute the requested action.
ErrDriverAction
=
errors
.
New
(
"driver: failed to perform action"
)
)
// Creator stores a release.
...
...
@@ -60,4 +62,4 @@ type Driver interface {
Updator
Deletor
Queryor
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment