- 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
public class SQLExecutor {
..............
private static class Done extends RuntimeException {}
private static class Break extends RuntimeException {}
...............
public boolean init(....) {
Connection conn = null;
try {
..........
} catch (Done d) {
return true;
} catch (Break b) {
return false;
} finally {
cleanup();
}
return true;
}
}
denis90 27.01.2012 04:06 # +3
Говногость 27.01.2012 09:13 # +1
absolut 27.01.2012 13:08 # +6
LeshaXakir 27.01.2012 16:10 # 0
TarasB 31.01.2012 09:35 # 0
Lure Of Chaos 02.02.2012 00:15 # 0
TheHamstertamer 27.01.2012 18:18 # 0
guest 27.01.2012 23:11 # 0
RaZeR 29.01.2012 17:39 # 0
>Done extends RuntimeExceptions
Что ни делай, а всё равно говно выходит...
Steve_Brown 30.01.2012 09:35 # +2
Lure Of Chaos 30.01.2012 17:52 # −1
absolut 30.01.2012 21:16 # +1
SmackMyBitchUp 31.01.2012 09:28 # +1