projects
/
platform
/
upstream
/
libzypp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8385e7
)
fix masking skip and abort exception
author
Josef Reidinger
<jreidinger@suse.cz>
Tue, 18 Mar 2008 10:39:49 +0000
(10:39 +0000)
committer
Josef Reidinger
<jreidinger@suse.cz>
Tue, 18 Mar 2008 10:39:49 +0000
(10:39 +0000)
zypp/Fetcher.cc
patch
|
blob
|
history
diff --git
a/zypp/Fetcher.cc
b/zypp/Fetcher.cc
index
4c25685
..
95c6ed6
100644
(file)
--- a/
zypp/Fetcher.cc
+++ b/
zypp/Fetcher.cc
@@
-210,12
+210,11
@@
namespace zypp
}
- catch (
const
Exception & excpt_r)
+ catch (Exception & excpt_r)
{
ZYPP_CAUGHT(excpt_r);
- Exception nexcpt("Can't provide " + (*it_res)->location.filename().asString() + " : " + excpt_r.msg());
- nexcpt.remember(excpt_r);
- ZYPP_THROW(nexcpt);
+ excpt_r.remember("Can't provide " + (*it_res)->location.filename().asString() + " : " + excpt_r.msg());
+ ZYPP_RETHROW(excpt_r);
}
}
else