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

com.athaydes.protobuf.tcp.api.CommunicationException Maven / Gradle / Ivy

package com.athaydes.protobuf.tcp.api;

import java.io.IOException;

/**
 * Exception that occurs when a remote service is called but a communication error occurs.
 * 

* Communication errors may be the result of connection, protocol or network issues. */ public class CommunicationException extends RuntimeException { public CommunicationException(IOException cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy