All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.uiuc.ncsa.myproxy.oa4mp.server.util.ExceptionEvent Maven / Gradle / Ivy

The newest version!
package edu.uiuc.ncsa.myproxy.oa4mp.server.util;

import edu.uiuc.ncsa.security.servlet.NotificationEvent;

import java.util.Map;

/**
 * 

Created by Jeff Gaynor
* on 9/18/12 at 11:26 AM */ public class ExceptionEvent extends NotificationEvent { Throwable throwable; public ExceptionEvent(Object source, Throwable throwable, Map state) { super(source); this.throwable = throwable; this.state = state; } public Throwable getThrowable(){ return throwable; } public Map getState() { return state; } public void setState(Map state) { this.state = state; } /** * The internal state of the servlet or calling agent. This is a set of key value pairs * that will be passed to a message template. */ Map state; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy