1
0
mirror of https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git synced 2025-07-14 22:09:25 +00:00

[CORE] Ajout d'une clss PqtException

This commit is contained in:
Notmoo-PC\Notmoo
2018-01-23 20:27:56 +01:00
parent c146ecf55b
commit 2ab19b79bc

@ -0,0 +1,24 @@
package com.pqt.core.exceptions;
public class PqtException extends Exception {
public PqtException() {
super();
}
public PqtException(String message) {
super(message);
}
public PqtException(String message, Throwable cause) {
super(message, cause);
}
public PqtException(Throwable cause) {
super(cause);
}
public PqtException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}