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

pl.allegro.tech.hermes.common.exception.InternalProcessingException Maven / Gradle / Ivy

The newest version!
package pl.allegro.tech.hermes.common.exception;

public class InternalProcessingException extends RuntimeException {
  public InternalProcessingException(Throwable throwable) {
    super(throwable);
  }

  public InternalProcessingException(String message) {
    super(message);
  }

  public InternalProcessingException(String message, Throwable throwable) {
    super(message, throwable);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy