com.evasion.exception.EvasionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
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);
}
}