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

io.dangernoodle.slack.objects.SlackError Maven / Gradle / Ivy

The newest version!
package io.dangernoodle.slack.objects;

/**
 * This class is used to represent an RTM error.
 *
 * @since 0.1.0
 */
public class SlackError
{
    private int code;

    private String msg;

    public int getCode()
    {
        return code;
    }

    public String getMessage()
    {
        return msg;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy