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

io.split.engine.sse.dtos.ErrorNotification Maven / Gradle / Ivy

There is a newer version: 4.13.0
Show newest version
package io.split.engine.sse.dtos;

public class ErrorNotification {
    private final String statusCode;
    private final String message;
    private final int code;

    public ErrorNotification(String statusCode, String message, int code) {
        this.statusCode = statusCode;
        this.message = message;
        this.code = code;
    }

    public String getMessage() { return message; }

    public String getStatusCode() { return statusCode; }

    public int getCode() { return code; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy