DbException.java
/*
* Decompiled with CFR 0_132.
*/
package org.xutils.ex;
import org.xutils.ex.BaseException;
public class DbException
extends BaseException {
private static final long serialVersionUID = 1L;
public DbException() {
}
public DbException(String detailMessage) {
super(detailMessage);
}
public DbException(String detailMessage, Throwable throwable) {
super(detailMessage, throwable);
}
public DbException(Throwable throwable) {
super(throwable);
}
}