org.flips.exception.FlipBeanFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flips-core Show documentation
Show all versions of flips-core Show documentation
Flips Core framework, provides all the flip annotations, conditions and different advices
package org.flips.exception;
public class FlipBeanFailedException extends RuntimeException{
public FlipBeanFailedException(String message, Throwable cause) {
super(message, cause);
}
public FlipBeanFailedException(Throwable cause) {
super(cause);
}
public FlipBeanFailedException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy