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

com.jexbox.connector.play.JexboxConnectorPlay Maven / Gradle / Ivy

Go to download

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

There is a newer version: 0.0.4
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy