All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.db.activerecord.ActiveRecordException Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package com.litongjava.db.activerecord;

/**
 * ActiveRecordException
 */
public class ActiveRecordException extends RuntimeException {
	
	private static final long serialVersionUID = 342820722361408621L;
	
	public ActiveRecordException(String message) {
		super(message);
	}
	
	public ActiveRecordException(Throwable cause) {
		super(cause);
	}
	
	public ActiveRecordException(String message, Throwable cause) {
		super(message, cause);
	}
}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy