mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
change travis java 9 to 11
This commit is contained in:
parent
c69831ed18
commit
f5c0430bbb
1 changed files with 25 additions and 28 deletions
|
@ -5,36 +5,33 @@ package org.springframework.samples.petclinic.exception;
|
|||
*/
|
||||
public class FunctionalException extends Exception {
|
||||
|
||||
/** serialVersionUID */
|
||||
private static final long serialVersionUID = 1L;
|
||||
/** serialVersionUID */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
// ==================== Constructeurs ====================
|
||||
/**
|
||||
* Constructeur.
|
||||
* @param pMessage -
|
||||
*/
|
||||
public FunctionalException(String pMessage) {
|
||||
super(pMessage);
|
||||
}
|
||||
|
||||
// ==================== Constructeurs ====================
|
||||
/**
|
||||
* Constructeur.
|
||||
*
|
||||
* @param pMessage -
|
||||
*/
|
||||
public FunctionalException(String pMessage) {
|
||||
super(pMessage);
|
||||
}
|
||||
/**
|
||||
* Constructeur.
|
||||
* @param pCause -
|
||||
*/
|
||||
public FunctionalException(Throwable pCause) {
|
||||
super(pCause);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructeur.
|
||||
*
|
||||
* @param pCause -
|
||||
*/
|
||||
public FunctionalException(Throwable pCause) {
|
||||
super(pCause);
|
||||
}
|
||||
/**
|
||||
* Constructeur.
|
||||
* @param pMessage -
|
||||
* @param pCause -
|
||||
*/
|
||||
public FunctionalException(String pMessage, Throwable pCause) {
|
||||
super(pMessage, pCause);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructeur.
|
||||
*
|
||||
* @param pMessage -
|
||||
* @param pCause -
|
||||
*/
|
||||
public FunctionalException(String pMessage, Throwable pCause) {
|
||||
super(pMessage, pCause);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue