mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-18 04:10:22 +00:00
doc: add comments to rbd error methods
Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
393569482e
commit
0bafa2be8c
@ -22,6 +22,7 @@ type ErrImageNotFound struct {
|
|||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Error returns a user presentable string of the error.
|
||||||
func (e ErrImageNotFound) Error() string {
|
func (e ErrImageNotFound) Error() string {
|
||||||
return e.err.Error()
|
return e.err.Error()
|
||||||
}
|
}
|
||||||
@ -33,6 +34,7 @@ type ErrSnapNotFound struct {
|
|||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Error returns a user presentable string of the error.
|
||||||
func (e ErrSnapNotFound) Error() string {
|
func (e ErrSnapNotFound) Error() string {
|
||||||
return e.err.Error()
|
return e.err.Error()
|
||||||
}
|
}
|
||||||
@ -44,6 +46,7 @@ type ErrVolNameConflict struct {
|
|||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Error returns a user presentable string of the error.
|
||||||
func (e ErrVolNameConflict) Error() string {
|
func (e ErrVolNameConflict) Error() string {
|
||||||
return e.err.Error()
|
return e.err.Error()
|
||||||
}
|
}
|
||||||
@ -54,6 +57,7 @@ type ErrInvalidVolID struct {
|
|||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Error returns a user presentable string of the error.
|
||||||
func (e ErrInvalidVolID) Error() string {
|
func (e ErrInvalidVolID) Error() string {
|
||||||
return e.err.Error()
|
return e.err.Error()
|
||||||
}
|
}
|
||||||
@ -63,6 +67,7 @@ type ErrMissingStash struct {
|
|||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Error returns a user presentable string of the error.
|
||||||
func (e ErrMissingStash) Error() string {
|
func (e ErrMissingStash) Error() string {
|
||||||
return e.err.Error()
|
return e.err.Error()
|
||||||
}
|
}
|
||||||
@ -72,6 +77,7 @@ type ErrFlattenInProgress struct {
|
|||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Error returns a user presentable string of the error.
|
||||||
func (e ErrFlattenInProgress) Error() string {
|
func (e ErrFlattenInProgress) Error() string {
|
||||||
return e.err.Error()
|
return e.err.Error()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user