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

com.evasion.module.common.CommonModuleException Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.evasion.module.common;

import com.evasion.exception.EvasionException;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy