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

com.venky.swf.db.table.RecordNotFoundException Maven / Gradle / Ivy

The newest version!
package com.venky.swf.db.table;

public class RecordNotFoundException extends RuntimeException {
	private static final long serialVersionUID = -3265238649137577529L;

	public RecordNotFoundException() {
		super();
		
	}

	public RecordNotFoundException(String message, Throwable cause, boolean enableSuppression,
			boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
		
	}

	public RecordNotFoundException(String message, Throwable cause) {
		super(message, cause);
		
	}

	public RecordNotFoundException(String message) {
		super(message);
		
	}

	public RecordNotFoundException(Throwable cause) {
		super(cause);
		
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy