Skip to content
Snippets Groups Projects
Commit 035bac16 authored by Christian Wulf's avatar Christian Wulf
Browse files

added toString() to ThreadThrowableContainer

parent 3defde0a
No related branches found
No related tags found
No related merge requests found
......@@ -37,4 +37,9 @@ public final class ThreadThrowableContainer {
return this.second;
}
@Override
public String toString() {
return second.getClass().getName() + " in " + getThread() + ": " + second.getLocalizedMessage();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment