com.rollbar.PayloadTransform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar Show documentation
Show all versions of rollbar Show documentation
Single entry point allowing reporting errors to Rollbar
package com.rollbar;
import com.rollbar.payload.Payload;
/**
* Created by chris on 12/16/15.
*/
public interface PayloadTransform {
Payload transform(Payload p, Throwable error, String message);
}