Proper toString() for wrapped throwables

This commit is contained in:
Andrey Breslav
2013-12-30 19:20:53 +04:00
parent 6781231411
commit 968e380321
@@ -33,6 +33,11 @@ public class WrappedValues {
public Throwable getThrowable() {
return throwable;
}
@Override
public String toString() {
return throwable.toString();
}
}
private WrappedValues() {