mirror of
https://github.com/klmp200/PQT_Gestionnaire_vente_stock.git
synced 2024-11-22 08:13:20 +00:00
[CORE] Ajout d'une clss PqtException
This commit is contained in:
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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user