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

org.fiolino.common.ioc.InstantiationException Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.ioc;

/**
 * Created by kuli on 09.12.15.
 */
public class InstantiationException extends RuntimeException {
    public InstantiationException() {
    }

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

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

    public InstantiationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy