package eu.javaexperience.unix.user.exception;
public class GroupDoesnotExistException extends UnixUserException
{
private static final long serialVersionUID = 1L;
public GroupDoesnotExistException(String str, Throwable thr)
{
super(str, thr);
}
public GroupDoesnotExistException(String str)
{
super(str);
}
public GroupDoesnotExistException(Throwable thr)
{
super(thr);
}
}