Package com.klipwallet.app2app.exception
Class KlipResponseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.klipwallet.app2app.network.exception.ResponseStatusException
-
- com.klipwallet.app2app.exception.KlipResponseException
-
- All Implemented Interfaces:
java.io.Serializable
public class KlipResponseException extends ResponseStatusException
Klip API 응답 관련 Exception Class- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KlipResponseException(int errCode, java.lang.String errorMsg, int httpStatus)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getErrorCode()
에러코드를 가져온다.java.lang.String
getErrorMsg()
에러코드 설명을 가제온다.int
getHttpStatusCode()
HTTP 상태코드를 가져온다.
-
-
-
Method Detail
-
getErrorCode
public int getErrorCode()
에러코드를 가져온다.- Specified by:
getErrorCode
in classResponseStatusException
- Returns:
- 에러코드
-
getErrorMsg
public java.lang.String getErrorMsg()
에러코드 설명을 가제온다.- Specified by:
getErrorMsg
in classResponseStatusException
- Returns:
- 에러코드 설명
-
getHttpStatusCode
public int getHttpStatusCode()
HTTP 상태코드를 가져온다.- Specified by:
getHttpStatusCode
in classResponseStatusException
- Returns:
- HTTP 상태코드
-
-