mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-07-11 04:19:27 +00:00
[SERVEUR] Ajout BadPqtServerSetupException
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user