Class RuntimeErrorEvent


  • public class RuntimeErrorEvent
    extends java.lang.Object
    Class for holding details of run-time errors that are encountered by the 3DS SDK during authentication.
    • Constructor Summary

      Constructors 
      Constructor Description
      RuntimeErrorEvent​(java.lang.String errorCode, java.lang.String errorMessage)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getErrorCode()
      Returns the implementer-specific error code.
      java.lang.String getErrorMessage()
      Returns details about the error.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • RuntimeErrorEvent

        public RuntimeErrorEvent​(java.lang.String errorCode,
                                 java.lang.String errorMessage)
        Constructor.
        Parameters:
        errorCode - String Implementer-specific error code. (not mandatory)
        errorMessage - String Error message.
    • Method Detail

      • getErrorCode

        public java.lang.String getErrorCode()
        Returns the implementer-specific error code.
        Returns:
        String
      • getErrorMessage

        public java.lang.String getErrorMessage()
        Returns details about the error.
        Returns:
        String
      • toString

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