From 4135f846526646f5327a3b3890f69bd0cace9d4d Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Wed, 18 Dec 2013 04:08:03 +0000 Subject: [PATCH] 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 --- src/java/org/apache/poi/hpsf/PropertySetFactory.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/poi/hpsf/PropertySetFactory.java b/src/java/org/apache/poi/hpsf/PropertySetFactory.java index 3d2611e849..6bff472e6a 100644 --- a/src/java/org/apache/poi/hpsf/PropertySetFactory.java +++ b/src/java/org/apache/poi/hpsf/PropertySetFactory.java @@ -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); } } -- 2.39.5