|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.poscoict.glueframework.GlueException
public class GlueException
Glue Framework에서 사용하는 최상위 Exception 클래스(The GlueException
class is the superclass of all errors and exceptions in the Glue
Framework). java.lang.RuntimeException
을 확장하였기 때문에 Unchecked Exception으로 분류된다. 따라서 Exception 처리가 꼭 필요한 경우를 제외하고는 개발자가 주의를
기울이지 않아도 상관없다. 즉, throws GlueException 을 하지 않아도 된다.
Constructor Summary | |
---|---|
GlueException(String msg)
생성자(constructor). |
|
GlueException(String msg,
Throwable ex)
생성자(constructor). |
Method Summary | |
---|---|
Throwable |
getRootCause()
원인 Exception 획득 |
void |
printStackTrace()
Exception Stack Trace를 출력 |
void |
printStackTrace(PrintStream ps)
Exception Stack Trace를 출력 |
void |
printStackTrace(PrintWriter pw)
Exception Stack Trace를 출력 |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public GlueException(String msg)
msg
- 에러 메시지public GlueException(String msg, Throwable ex)
msg
- 에러 메시지ex
- 원인(Root, Cause) ExceptionMethod Detail |
---|
public Throwable getRootCause()
public void printStackTrace(PrintStream ps)
printStackTrace
in class Throwable
ps
- PrintStream to use for outputpublic void printStackTrace(PrintWriter pw)
printStackTrace
in class Throwable
pw
- PrintWriter to use for outputpublic void printStackTrace()
printStackTrace
in class Throwable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |