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

com.github.hippo.exception.HippoRuntimeException Maven / Gradle / Ivy

package com.github.hippo.exception;

public class HippoRuntimeException extends RuntimeException {

  private static final long serialVersionUID = -309132048507267819L;

  public HippoRuntimeException(String msg) {
    super(msg);
  }

  public HippoRuntimeException(String msg, Throwable cause) {
    super(msg, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy