com.github.psnrigner.ErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discord-rpc-java Show documentation
Show all versions of discord-rpc-java Show documentation
Java implementation of Discord RPC SDK
package com.github.psnrigner;
/**
* Discord error codes
*/
public enum ErrorCode
{
SUCCESS,
PIPE_CLOSED,
READ_CORRUPT,
UNKNOWN
// TODO Implement more error codes, and use an id field instead of ordinal
}