incorporating code review comments from r648

This commit is contained in:
Inderjeet Singh 2010-11-05 21:51:29 +00:00
parent 832257234d
commit c3bae2d35e

View File

@ -35,6 +35,8 @@ public final class MalformedJsonException extends IOException {
}
public MalformedJsonException(Throwable throwable) {
// Using initCause() instead of calling super() because Java 1.5 didn't retrofit IOException
// with a constructor with Throwable. This was done in Java 1.6
initCause(throwable);
}
}