com.jexbox.connector.play.JexboxConnectorPlay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jexbox-play Show documentation
Show all versions of jexbox-play Show documentation
Jexbox Play! Framework connector hooks as ExceptionHandler, so any uncaught exceptions in your Play! application will be sent to your Jexbox database. The connector extracts complete exception stack trace, including nested exceptions, error message and system properties and page/component traces
package com.jexbox.connector.play;
import java.util.Map;
import play.mvc.Http.RequestHeader;
import play.mvc.Http.Session;
import com.jexbox.connector.JexboxConnector;
public interface JexboxConnectorPlay extends JexboxConnector{
public void send(Throwable e, RequestHeader request, Session session);
public void sendWithMeta(Throwable e, RequestHeader request, Session session, Map> metaD);
}