
com.venky.swf.db.table.RecordNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-db Show documentation
Show all versions of swf-db Show documentation
Succinct Web Framework - Db
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