LEFT | RIGHT |
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 Loading... |
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 } |
LEFT | RIGHT |