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

com.dodgeballhq.protect.messages.DodgeballApiError Maven / Gradle / Ivy

The newest version!
package com.dodgeballhq.protect.messages;

public class DodgeballApiError {
    public DodgeballApiError(String message){
        this.message = message;
    }

    public DodgeballApiError(String message, String stack){
        this.message = message;
        this.stack = stack;
    }

    public String message;
    public String stack;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy