Module Server, clss ServerQueryException : ajout constructeurs

This commit is contained in:
Notmoo 2017-08-10 10:21:50 +02:00
parent 66e1e7e19b
commit 7de32786ab
1 changed files with 15 additions and 0 deletions

View File

@ -1,4 +1,19 @@
package com.pqt.server.exception;
public class ServerQueryException extends Exception {
public ServerQueryException() {
}
public ServerQueryException(String message) {
super(message);
}
public ServerQueryException(String message, Throwable cause) {
super(message, cause);
}
public ServerQueryException(Throwable cause) {
super(cause);
}
}