mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 07:45: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 {
|
public class FunctionalException extends Exception {
|
||||||
|
|
||||||
/** serialVersionUID */
|
/** serialVersionUID */
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
// ==================== Constructeurs ====================
|
||||||
|
/**
|
||||||
|
* Constructeur.
|
||||||
|
* @param pMessage -
|
||||||
|
*/
|
||||||
|
public FunctionalException(String pMessage) {
|
||||||
|
super(pMessage);
|
||||||
|
}
|
||||||
|
|
||||||
// ==================== Constructeurs ====================
|
/**
|
||||||
/**
|
* Constructeur.
|
||||||
* Constructeur.
|
* @param pCause -
|
||||||
*
|
*/
|
||||||
* @param pMessage -
|
public FunctionalException(Throwable pCause) {
|
||||||
*/
|
super(pCause);
|
||||||
public FunctionalException(String pMessage) {
|
}
|
||||||
super(pMessage);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructeur.
|
* Constructeur.
|
||||||
*
|
* @param pMessage -
|
||||||
* @param pCause -
|
* @param pCause -
|
||||||
*/
|
*/
|
||||||
public FunctionalException(Throwable pCause) {
|
public FunctionalException(String pMessage, Throwable pCause) {
|
||||||
super(pCause);
|
super(pMessage, pCause);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructeur.
|
|
||||||
*
|
|
||||||
* @param pMessage -
|
|
||||||
* @param pCause -
|
|
||||||
*/
|
|
||||||
public FunctionalException(String pMessage, Throwable pCause) {
|
|
||||||
super(pMessage, pCause);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue