mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2024-11-22 08:13:20 +00:00
[SERVEUR] Ajout BadPqtServerSetupException
This commit is contained in:
parent
7c942d6110
commit
d8f096f8d9
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user