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

com.evasion.exception.EvasionException Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.evasion.exception;

/**
 *
 * @author sebastien.glon
 */
public class EvasionException extends Exception {

    /**
     * Creates a new instance of NewException without detail message.
     */
    public EvasionException() {
    }


    /**
     * Constructs an instance of NewException with the specified detail message.
     * @param msg the detail message.
     */
    public EvasionException(String msg) {
        super(msg );
    }

    /**
     * Constructs an instance of NewException with the specified detail message.
     * @param msg the detail message.
     */
    public EvasionException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy