创建 DatabaseQueryException.java
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
package com.kimgo.wepush.exceptions;
|
||||||
|
|
||||||
|
public class DatabaseQueryException extends Exception {
|
||||||
|
public DatabaseQueryException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public DatabaseQueryException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user