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

org.openbaton.exceptions.CyclicDependenciesException Maven / Gradle / Ivy

package org.openbaton.exceptions;

/**
 * Created by lto on 15/01/16.
 */
public class CyclicDependenciesException extends Exception {
  public CyclicDependenciesException(Throwable cause) {
    super(cause);
  }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy