com.fastchar.exception.FastSqlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
package com.fastchar.exception;
public class FastSqlException extends RuntimeException {
private static final long serialVersionUID = -7519948369474426450L;
public FastSqlException(String message) {
super(message);
}
public FastSqlException(Throwable cause) {
super(cause);
}
public FastSqlException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy