- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
void Fetch_image::fetch( ...
, bool& image_repo_available)
{
///...
if( smth)
{
/// ...
image_repo_available = false;/// 1
throw Exception( ...);/// 2
}
else
{
/// ...
image_repo_available = true;
}
}
bool Fetch_image::process(... ,bool& image_repo_available)
{
/// ...
bool image_repo_available = false;
try
{
/// ...
fetch(..., image_repo_available);
}
catch(Exception const & ex)/// 3
{
log(...);
return false; /// 4
}
catch (...)
{
return false; /// 5
}
/// ...
}
guest 06.12.2013 15:35 # −4
Пшёл отсюда на мочан, рак. Здесь ресурс для элиты.
blackhearted 06.12.2013 19:01 # +2
LispGovno 06.12.2013 20:56 # 0
guest 06.12.2013 20:05 # −3
guest 06.12.2013 20:06 # 0
LispGovno 06.12.2013 20:58 # 0
bormand 06.12.2013 20:06 # +1
1024-- 06.12.2013 20:23 # 0