mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2024-11-17 05:43:21 +00:00
Module Server, clss ServerQueryException : ajout constructeurs
This commit is contained in:
parent
66e1e7e19b
commit
7de32786ab
@ -1,4 +1,19 @@
|
|||||||
package com.pqt.server.exception;
|
package com.pqt.server.exception;
|
||||||
|
|
||||||
public class ServerQueryException extends 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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user