xq.gwt.mvc.model.ConversionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of XqGwtMvc Show documentation
Show all versions of XqGwtMvc Show documentation
A framework for implementing the MVP variant of the Model View Controller design pattern in the context of GWT
The newest version!
package xq.gwt.mvc.model;
public class ConversionException extends Exception {
private static final long serialVersionUID = 2745496332983428762L;
public ConversionException(){
super(ConversionException.class.getName());
}
public ConversionException(String message){
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy