mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-07-12 21:09:25 +00:00
Module Server, clss ServerQueryException : ajout constructeurs
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user