br.com.codecode.dryutil.exception.NotImplementedYetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dry-util Show documentation
Show all versions of dry-util Show documentation
Dont Repeat Yourself! - Utilities
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);
}
}