author | Michael Krelin <hacker@klever.net> | 2008-01-31 23:54:44 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-01-31 23:54:44 (UTC) |
commit | 61e6da06804f98d0cbb9d27eeb335351b3e05d4d (patch) (side-by-side diff) | |
tree | 51469cb82808da57cb696a858d65840b9b5d02dd /test | |
parent | 0a90a7791bd329afd8955df78b8ae358adc897a8 (diff) | |
download | libopkele-61e6da06804f98d0cbb9d27eeb335351b3e05d4d.zip libopkele-61e6da06804f98d0cbb9d27eeb335351b3e05d4d.tar.gz libopkele-61e6da06804f98d0cbb9d27eeb335351b3e05d4d.tar.bz2 |
fixed kingate_openid_message code in test area
rethrow kingate's notfound exceptions as opkele ones.
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | test/kingate_openid_message.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/kingate_openid_message.h b/test/kingate_openid_message.h index b3a2c9d..37dcdfa 100644 --- a/test/kingate_openid_message.h +++ b/test/kingate_openid_message.h @@ -90,8 +90,9 @@ class kingate_openid_message_t : public opkele::basic_openid_message { bool has_field(const string& n) const { return gw.has_param("openid."+n); } - const string& get_field(const string& n) const { - return gw.get_param("openid."+n); } + const string& get_field(const string& n) const try { + return gw.get_param("openid."+n); }catch(kingate::exception_notfound& nf) { + throw opkele::failed_lookup(OPKELE_CP_ nf.what()); } fields_iterator fields_begin() const { return |