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

io.gs2.core.model.GeneralError Maven / Gradle / Ivy

The newest version!
package io.gs2.core.model;


import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.io.Serializable;

@SuppressWarnings("serial")
@JsonIgnoreProperties(ignoreUnknown=true)
public class GeneralError implements Serializable {

    private String message;

    public void setMessage(String message) {
        this.message = message;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy