SqlParsePagerException.java 203 Bytes
package com.taover.repository.exception;

public class SqlParsePagerException extends RuntimeException{
	private String msg = null;
	
	public SqlParsePagerException(String msg) {
		this.msg = msg;
	}

}