All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.iodesystems.xml.tools.loaded.FileLoadErrored Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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