format code
This commit is contained in:
parent
c5c575c095
commit
62a66e6859
@ -1,17 +1,14 @@
|
|||||||
package de.hsadmin.cliClientConnector;
|
package de.hsadmin.cliClientConnector;
|
||||||
|
|
||||||
@SuppressWarnings("serial")
|
public class BusinessException extends RuntimeException {
|
||||||
public class BusinessException
|
|
||||||
extends RuntimeException
|
|
||||||
{
|
|
||||||
|
|
||||||
public BusinessException(String msg)
|
private static final long serialVersionUID = 1L;
|
||||||
{
|
|
||||||
|
public BusinessException(String msg) {
|
||||||
super(msg);
|
super(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BusinessException(Exception exc)
|
public BusinessException(Exception exc) {
|
||||||
{
|
|
||||||
super(exc.getMessage());
|
super(exc.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user