mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2025-07-18 15:59:24 +00:00
[CORE] Ajout d'une clss PqtException
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user