Fix bug #55901 - Avoid using RMI based
exception from PropertySetFactory, as it's not needed nor helpful git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1551832 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
01378c8acc
commit
87375a5b46
@ -17,10 +17,9 @@
|
||||
|
||||
package org.apache.poi.hpsf;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.rmi.UnexpectedException;
|
||||
|
||||
import org.apache.poi.hpsf.wellknown.SectionIDMap;
|
||||
|
||||
@ -70,7 +69,7 @@ public class PropertySetFactory
|
||||
{
|
||||
/* This exception will never be throws because we already checked
|
||||
* explicitly for this case above. */
|
||||
throw new UnexpectedException(ex.toString());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user