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

org.rapidpm.ddi.implresolver.DDIModelException Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.rapidpm.ddi.implresolver;

/**
 * Created by svenruppert on 14.07.15.
 */
public class DDIModelException extends RuntimeException {
  public DDIModelException() {
  }

  public DDIModelException(final String message) {
    super(message);
  }

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

  public DDIModelException(final Throwable cause) {
    super(cause);
  }

  public DDIModelException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy