org.jsimpledb.JSimpleDBException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-main Show documentation
Show all versions of jsimpledb-main Show documentation
JSimpleDB classes that map Java model classes onto the core API.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb;
/**
* Superclass of all unchecked exceptions thrown by the {@link JSimpleDB} API.
*/
@SuppressWarnings("serial")
public class JSimpleDBException extends RuntimeException {
public JSimpleDBException() {
}
public JSimpleDBException(String message) {
super(message);
}
public JSimpleDBException(Throwable cause) {
super(cause);
}
public JSimpleDBException(String message, Throwable cause) {
super(message, cause);
}
}