[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
1 changed files with 24 additions and 0 deletions

View File

@ -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);
}
}