com.coditory.quark.context.CyclicDependencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quark-context Show documentation
Show all versions of quark-context Show documentation
Coditory Quark Configuration Library
package com.coditory.quark.context;
public class CyclicDependencyException extends RuntimeException {
public CyclicDependencyException(String message) {
super(message);
}
public CyclicDependencyException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy