com.iodesystems.xml.tools.loaded.FileLoadErrored Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmltools Show documentation
Show all versions of xmltools Show documentation
Xmltools contains a flexible jaxb xml loader
package com.iodesystems.xml.tools.loaded;
import com.iodesystems.xml.tools.XmlLoader;
public class FileLoadErrored extends LoadErrored {
private final String fileSource;
private final Class loadClass;
private final XmlLoader xmlLoader;
public FileLoadErrored(
String fileSource, Class loadClass, Exception loadException, XmlLoader xmlLoader) {
super(loadException);
this.fileSource = fileSource;
this.loadClass = loadClass;
this.xmlLoader = xmlLoader;
}
public String getFileSource() {
return fileSource;
}
public Class getLoadClass() {
return loadClass;
}
public XmlLoader getXmlLoader() {
return xmlLoader;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy