org.sql2o.converters.ConverterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
package org.sql2o.converters;
/**
* Represents an exception thrown from a converter.
*/
public class ConverterException extends Exception{
private static final long serialVersionUID = -6515158190992901520L;
public ConverterException(String message) {
super(message);
}
public ConverterException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy