package com.nicewuerfel.blockown.importer;
/**
* Thrown if any Exception occurs while importing.
*
* @author Pheasn
*/
public class ImporterException extends RuntimeException {
public ImporterException() {
super();
}
public ImporterException(String string) {
super(string);
}
private static final long serialVersionUID = -8904364255092050049L;
}