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

com.genesys.workspace.events.EventError Maven / Gradle / Ivy

There is a newer version: 9.0.73
Show newest version
package com.genesys.workspace.events;

public class EventError {
    private String message;
    private String code;

    public EventError(String message, String code) {
        this.message = message;
        this.code = code;
    }

    public String getMessage() {
        return this.message;
    }

    public String getCode() {
        return this.code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy