mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-08-08 01:59:57 +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