Package org.apache.ignite.internal.util
Class IgniteExceptionRegistry.ExceptionInfo
- java.lang.Object
-
- org.apache.ignite.internal.util.IgniteExceptionRegistry.ExceptionInfo
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- IgniteExceptionRegistry
public static class IgniteExceptionRegistry.ExceptionInfo extends Object implements Serializable
Detailed info about suppressed error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExceptionInfo(long order, Throwable error, String msg, long threadId, String threadName, long time)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwableerror()Stringmessage()longorder()longthreadId()StringthreadName()longtime()StringtoString()
-
-
-
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.
-
-