mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-07-05 09:35:19 +00:00
20 lines
400 B
Java
20 lines
400 B
Java
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);
|
|
}
|
|
}
|