package at.gv.egovernment.moa.id.proxy; import at.gv.egovernment.moa.id.MOAIDException; /** * Exception thrown while proxying a request to the online application * Reason for this exception: the dedicated LoginParameterResolver does * not allow access to the desired ressource. * * @author Rudolf Schamberger * @version $Id$ */ public class NotAllowedException extends MOAIDException { /** * Constructor for NotAllowedException. * @param messageId * @param parameters */ public NotAllowedException( String messageId, Object[] parameters) { super(messageId, parameters); } /** * Constructor for NotAllowedException. * @param messageId * @param parameters * @param wrapped */ public NotAllowedException( String messageId, Object[] parameters, Throwable wrapped) { super(messageId, parameters, wrapped); } }