public class ErrorResult extends Object
Constructor and Description |
---|
ErrorResult(Exception e)
클라이언트 사이드에서 에러가 발생한 경우에 사용하는 생성자
|
ErrorResult(com.kakao.network.exception.ResponseStatusError e)
Http Status Code가 200이 아닌 경우에 사용하는 생성자
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
int |
getErrorCode()
ErrorCode를 반환한다.
|
String |
getErrorMessage()
에러발생 메세지
|
Exception |
getException() |
int |
getHttpStatus()
HttpResponse StatusCode를 반환
|
String |
toString()
결과 객체를 String으로 표현
|
public ErrorResult(Exception e)
e
- 클라이언트 사이드에서 발생한 예외 객체public ErrorResult(com.kakao.network.exception.ResponseStatusError e)
e
- 서버에서 내려온 에러를 표현하는 예외 객체public int getErrorCode()
public String getErrorMessage()
public Exception getException()
public int getHttpStatus()