Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- xargs
- context
- Eclipse
- port
- netsh
- bash
- maVen
- Mac
- lsof
- VirtualBox
- Quartz
- web.xml
- resource
- 줄바꿈 문자
- IntelliJ
- 단축키
- plugin
- profile
- Windows 10
- JavaScript
- Windows
- GIT
- vscode
- ssh
- tomcat
- find
- 네트워크
- import
- grep
- Source
Archives
- Today
- Total
develog
[Java] getRootCause 본문
public Throwable getRootCause(Throwable e) {
if (e == null) return null;
Throwable t = e;
Throwable prevT = t;
while (true) {
t = t.getCause();
if (t == null) break;
prevT = t;
}
return prevT;
}
public String getRootCauseMsg(Throwable e) {
Throwable t = getRootCause(e);
if (t == null) return null;
return t.getMessage();
}
'Dev > Java' 카테고리의 다른 글
[Maven] Eclipse, Maven, Dynamic Web Project (0) | 2014.12.21 |
---|---|
[Java] JNI (0) | 2014.12.03 |
[Java] 음력, icu4j (0) | 2014.11.19 |
[Java] 음력 (0) | 2014.11.19 |
[Java] List inline add (0) | 2014.11.19 |
Comments