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

io.scalecube.services.exceptions.MessageCodecException Maven / Gradle / Ivy

package io.scalecube.services.exceptions;

public class MessageCodecException extends RuntimeException {

  public MessageCodecException(String message, Throwable cause) {
    super(message, cause);
  }

  @Override
  public String toString() {
    return getClass().getSimpleName() + "{errorMessage=" + getMessage() + '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy