Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2003)

Delta Between Two Patch Sets: state/api/params/apierror.go

Issue 10939043: state/api/watcher: Refactor API watchers
Left Patch Set: state/api/watcher: Refactor API watchers Created 11 years, 9 months ago
Right Patch Set: state/api/watcher: Refactor API watchers Created 11 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « state/api/machiner/machiner_test.go ('k') | state/api/params/params.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2013 Canonical Ltd. 1 // Copyright 2013 Canonical Ltd.
2 // Licensed under the AGPLv3, see LICENCE file for details. 2 // Licensed under the AGPLv3, see LICENCE file for details.
3 3
4 package params 4 package params
5 5
6 import ( 6 import (
7 "fmt" 7 "fmt"
8 8
9 "launchpad.net/juju-core/rpc" 9 "launchpad.net/juju-core/rpc"
10 ) 10 )
11 11
12 // Error is the type of error returned by any call to the state API
12 type Error struct { 13 type Error struct {
13 Message string 14 Message string
14 Code string 15 Code string
15 } 16 }
16 17
17 func (e *Error) Error() string { 18 func (e *Error) Error() string {
18 return e.Message 19 return e.Message
19 } 20 }
20 21
21 func (e *Error) ErrorCode() string { 22 func (e *Error) ErrorCode() string {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 63 }
63 // We use our own error type rather than rpc.ServerError 64 // We use our own error type rather than rpc.ServerError
64 // because we don't want the code or the "server error" prefix 65 // because we don't want the code or the "server error" prefix
65 // within the error message. Also, it's best not to make clients 66 // within the error message. Also, it's best not to make clients
66 // know that we're using the rpc package. 67 // know that we're using the rpc package.
67 return &Error{ 68 return &Error{
68 Message: rerr.Message, 69 Message: rerr.Message,
69 Code: rerr.Code, 70 Code: rerr.Code,
70 } 71 }
71 } 72 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b