Class IgniteExceptionRegistry.ExceptionInfo

    • Constructor Detail

      • ExceptionInfo

        public ExceptionInfo​(long order,
                             Throwable error,
                             String msg,
                             long threadId,
                             String threadName,
                             long time)
        Constructor.
        Parameters:
        order - Locally unique ID that is atomically incremented for each new error.
        error - Suppressed error.
        msg - Message that describe reason why error was suppressed.
        threadId - Thread ID.
        threadName - Thread name.
        time - Occurrence time.
    • Method Detail

      • order

        public long order()
        Returns:
        Locally unique ID that is atomically incremented for each new error.
      • message

        public String message()
        Returns:
        Gets message that describe reason why error was suppressed.
      • error

        public Throwable error()
        Returns:
        Suppressed error.
      • threadId

        public long threadId()
        Returns:
        Gets thread ID.
      • threadName

        public String threadName()
        Returns:
        Gets thread name.
      • time

        public long time()
        Returns:
        Gets time.