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

org.flips.exception.FlipBeanFailedException Maven / Gradle / Ivy

Go to download

Flips Core framework, provides all the flip annotations, conditions and different advices

There is a newer version: 1.1
Show newest version
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