org.jsimpledb.JSimpleDBException Maven / Gradle / Ivy
/*
* 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy