[SERVEUR] Ajout BadPqtServerSetupException

This commit is contained in:
Notmoo-PC\Notmoo 2018-01-23 20:28:55 +01:00
parent 7c942d6110
commit d8f096f8d9
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.pqt.server.servlets.exceptions;
import com.pqt.core.exceptions.PqtException;
public class BadPqtServerSetupException extends PqtException {
public BadPqtServerSetupException() {
super();
}
public BadPqtServerSetupException(String message) {
super(message);
}
public BadPqtServerSetupException(String message, Throwable cause) {
super(message, cause);
}
public BadPqtServerSetupException(Throwable cause) {
super(cause);
}
public BadPqtServerSetupException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}