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

br.com.codecode.dryutil.exception.NotImplementedYetException Maven / Gradle / Ivy

The newest version!
package br.com.codecode.dryutil.exception;

public class NotImplementedYetException extends Exception {

    private static final long serialVersionUID = -2610410571625018163L;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy