com.litongjava.tio.boot.paranamer.ParameterNamesNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
package com.litongjava.tio.boot.paranamer;
/**
* Exception thrown when no parameter names are found
*
* @author Paul Hammant
* @author Mauro Talevi
*/
@SuppressWarnings("serial")
public class ParameterNamesNotFoundException extends RuntimeException {
public static final String __PARANAMER_DATA = "v1.0 \n" + " java.lang.String message \n";
private Exception cause;
public ParameterNamesNotFoundException(String message, Exception cause) {
super(message);
this.cause = cause;
}
public ParameterNamesNotFoundException(String message) {
super(message);
}
public Throwable getCause() {
return cause;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy