90919293949596
*/ @Test(expected = org.apache.xmpbox.xml.XmpSerializationException.class) public void testTransformerExceptionMessage() throws XmpSerializationException { throw new XmpSerializationException("TEST"); }
96979899100101102
} @Test(expected = org.apache.xmpbox.xml.XmpSerializationException.class) public void testTransformerExceptionWithCause() throws XmpSerializationException { throw new XmpSerializationException("TEST", new Throwable()); }
92939495969798
9899100101102103104