package at.gv.egovernment.moa.id.auth; import at.gv.egovernment.moa.id.MOAIDException; /** * Exception thrown when the AuthenticationServer API is * called with wrong parameters provided. * * @author Paul Ivancsics * @version $Id$ */ public class WrongParametersException extends MOAIDException { /** * Constructor */ public WrongParametersException(String call, String parameter) { super("auth.05", new Object[] {call, parameter}); } }