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

cn.enilu.flash.core.db.RecordNotFoundException Maven / Gradle / Ivy

package cn.enilu.flash.core.db;

import org.springframework.core.NestedRuntimeException;

@SuppressWarnings("serial")
public class RecordNotFoundException extends NestedRuntimeException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy