mirror of https://github.com/apache/poi.git
Improve unhandled continue record message by saying what it follows
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@900743 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
90c599b4bb
commit
398b457631
|
@ -339,7 +339,7 @@ public final class RecordFactoryInputStream {
|
|||
// outputs a file like this all the same
|
||||
return record;
|
||||
}
|
||||
throw new RecordFormatException("Unhandled Continue Record");
|
||||
throw new RecordFormatException("Unhandled Continue Record followining " + _lastRecord.getClass());
|
||||
}
|
||||
_lastRecord = record;
|
||||
if (record instanceof DrawingRecord) {
|
||||
|
|
Loading…
Reference in New Issue