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

com.github.cloudyrock.mongock.exception.MongockException Maven / Gradle / Ivy

package com.github.cloudyrock.mongock.exception;

/**
 *
 */
public class MongockException extends RuntimeException {
  public MongockException(Exception exception) {
    super(exception);
  }

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

  public MongockException(String message, Exception e) {
    super(message, e);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy