Class KlipErrorResponse


  • public class KlipErrorResponse
    extends java.lang.Object
    Klip 에러
    • Constructor Summary

      Constructors 
      Constructor Description
      KlipErrorResponse​(ResponseStatusException e)
      Http 상태코드가 200이 아닌 경우에 사용하는 생성자
      KlipErrorResponse​(java.lang.Exception e)
      클라이언트 사이드에서 예외가 발생한 경우에 사용하는 생성자
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getErrorCode()
      에러코드를 가져온다.
      java.lang.String getErrorMsg()
      에러코드 설명을 가제온다.
      java.lang.Exception getException()  
      int getHttpStatus()
      HTTP 상태코드를 가져온다.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • KlipErrorResponse

        public KlipErrorResponse​(java.lang.Exception e)
        클라이언트 사이드에서 예외가 발생한 경우에 사용하는 생성자
        Parameters:
        e - 클라이언트 사이드에서 발생한 Exception
      • KlipErrorResponse

        public KlipErrorResponse​(ResponseStatusException e)
        Http 상태코드가 200이 아닌 경우에 사용하는 생성자
        Parameters:
        e - 서버에서 내려온 에러를 표현하는 Exception
    • Method Detail

      • getErrorCode

        public int getErrorCode()
        에러코드를 가져온다.
        Returns:
        에러코드
      • getErrorMsg

        public java.lang.String getErrorMsg()
        에러코드 설명을 가제온다.
        Returns:
        에러코드 설명
      • getHttpStatus

        public int getHttpStatus()
        HTTP 상태코드를 가져온다.
        Returns:
        HTTP 상태코드
      • getException

        public java.lang.Exception getException()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object