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