package cn.autoform.fw.exception; public class RowOverLengthException extends Exception{ private String msg; public RowOverLengthException(String msg){ this.msg = msg; } public RowOverLengthException(){} /** * serialVersionUID */ private static final long serialVersionUID = -1139226257573399684L; @Override public String getMessage() { return this.msg; } }