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

org.rx.net.rpc.packet.ErrorPacket Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.net.rpc.packet;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

import java.io.Serializable;

@Getter
@RequiredArgsConstructor
public class ErrorPacket implements Serializable {
    private static final long serialVersionUID = 7990939004009224185L;
    private final String errorMessage;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy