UserDoesnotExistException.java

package eu.javaexperience.unix.user.exception;


public class UserDoesnotExistException extends UnixUserException
{
	private static final long serialVersionUID = 1L;

	public UserDoesnotExistException(String str, Throwable thr)
	{
		super(str, thr);
	}
	
	public UserDoesnotExistException(String str)
	{
		super(str);
	}
	
	public UserDoesnotExistException(Throwable thr)
	{
		super(thr);
	}
}