ref 8432:TDM - DatabasesManager - Support Java 8 compatibility
https://support.d4science.org/issues/8432 Updated to support Java 8 compatibility git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/databases-manager-portlet@148571 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
b3ac0f382f
commit
efa56d185f
|
@ -5,8 +5,8 @@ package org.gcube.portlets.user.databasesmanager.shared.exception;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author "Giancarlo Panichi"
|
* @author Giancarlo Panichi
|
||||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class ServiceException extends Exception {
|
public class ServiceException extends Exception {
|
||||||
|
@ -30,9 +30,13 @@ public class ServiceException extends Exception {
|
||||||
super(message);
|
super(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
public ServiceException(String message,Throwable t) {
|
*
|
||||||
super(message,t);
|
* @param message message
|
||||||
|
* @param throwable error
|
||||||
|
*/
|
||||||
|
public ServiceException(String message,Throwable throwable) {
|
||||||
|
super(message,throwable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue