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

com.evasion.plugin.geoloc.dataimport.ImportFormatException Maven / Gradle / Ivy

There is a newer version: 2.0.0.2
Show newest version
/*
 * 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy