com.evasion.exception.UsernameNotFoundException 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
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.exception;
/**
*
* @author sebastien.glon
*/
public class UsernameNotFoundException extends EvasionException {
/**
* Creates a new instance of UsernameNotFoundException
without detail message.
*/
public UsernameNotFoundException() {
}
/**
* Constructs an instance of UsernameNotFoundException
with the specified detail message.
* @param msg the detail message.
*/
public UsernameNotFoundException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy