Elliotte Rusty Harold created MSHARED-951:
---------------------------------------------
Summary: Checked exception converted to raw runtime exception
Key: MSHARED-951
URL: https://issues.apache.org/jira/browse/MSHARED-951
Project: Maven Shared Components
Issue Type: Bug
Reporter: Elliotte Rusty Harold
Assignee: Elliotte Rusty Harold
In Xpp3DOMBuilder
```
public static Xpp3Dom build( @WillClose InputStream is, @Nonnull String
encoding, boolean trim )
throws XmlPullParserException
{
try
{
Reader reader = new InputStreamReader( is, encoding );
return build( reader, trim );
}
catch ( UnsupportedEncodingException e )
{
throw new RuntimeException( e );
}
}
```
--
This message was sent by Atlassian Jira
(v8.3.4#803005)