![JAR search and dependency download from the Maven repository](/logo.png)
com.evasion.exception.EvasionException Maven / Gradle / Ivy
/*
* 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 - 2025 Weber Informatics LLC | Privacy Policy