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