001package com.logfire.logback;
002
003/**
004 * Holder for Logfire error message.
005 * 
006 * @author tomas@logfire.ai
007 */
008public class LogfireResponse {
009
010    private String error;
011    private int status;
012
013    public LogfireResponse(String error, int status) {
014        this.error = error;
015        this.status = status;
016    }
017
018    public String getError() { return error; }
019    public int getStatus() { return status; }
020
021}