com.digitaldan.harmony.messages.ErrorResponseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harmony-client Show documentation
Show all versions of harmony-client Show documentation
Logitech Harmony WebSocket Client
The newest version!
package com.digitaldan.harmony.messages;
public class ErrorResponseMessage extends ResponseMessage {
public ErrorResponseMessage(int code, String id, String msg) {
super(code, id, msg);
}
}