dps.commons.reflect.NoSuchConstructorError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dps.webapplication Show documentation
Show all versions of dps.webapplication Show documentation
Common classes for webapplications
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