
no.tornado.databinding.converter.ConversionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databinding Show documentation
Show all versions of databinding Show documentation
Swing Data Binding is a powerful, fast, light and simple data binding framework for Java.
The newest version!
package no.tornado.databinding.converter;
import no.tornado.databinding.validator.ValidationResult;
public class ConversionException extends Exception {
private ValidationResult result;
public ConversionException() {
}
public ConversionException(String message) {
super(message);
}
public ConversionException(String message, Throwable cause) {
super(message, cause);
}
public ConversionException(Throwable cause) {
super(cause);
}
public ConversionException(ValidationResult result) {
super(result.getMessage());
this.result = result;
}
public ValidationResult getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy