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

dps.commons.reflect.NoSuchConstructorError Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package dps.commons.reflect;

/**
 *
 * @author ferenci84
 */
public class NoSuchConstructorError extends RuntimeException {

    /**
     * Creates a new instance of NoSuchConstcutorException without
     * detail message.
     */
    public NoSuchConstructorError() {
    }

    /**
     * Constructs an instance of NoSuchConstcutorException with the
     * specified detail message.
     *
     * @param msg the detail message.
     */
    public NoSuchConstructorError(String msg) {
        super(msg);
    }

    public NoSuchConstructorError(String msg, Throwable cause) {
        super(msg,cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy