Я получаю ошибку рядом с оператором catch Ошибка: требуется java.lang.Throwabe найдено org.springframework.oxm.XmlMappingException
enter code here public void writeObjectToXml(Object object, String filename) throws IOException {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(filename);
try {
marshaller.marshal(object, new StreamResult(fos));
} catch (XmlMappingException xme) {
}
fos.close();
} catch (Exception e) {
System.out.println("Error :: " + e);
}
}