com.evasion.plugin.geoloc.dataimport.ImportFormatException Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.plugin.geoloc.dataimport;
import com.evasion.exception.EvasionException;
/**
*
* @author glon-56610
*/
public class ImportFormatException extends EvasionException {
/**
* Creates a new instance of PersistenceViolationException
without detail message.
*/
public ImportFormatException() {
}
/**
* Constructs an instance of PersistenceViolationException
with the specified detail message.
* @param msg the detail message.
*/
public ImportFormatException(String msg) {
super(msg);
}
/**
* Constructs an instance of PersistenceViolationException
with the specified detail message.
* @param msg the detail message.
*/
public ImportFormatException(String msg, Throwable t) {
super(msg, t);
}
}