package org.theonefx.wcframework.jdbc.exception;
public class RowMapperException extends DomainCreateException {
private static final long serialVersionUID = -993608108350580145L;
public RowMapperException(String msg, Throwable cause) {
super(msg, cause);
}
public RowMapperException(String msg) {
super(msg);
}
}