aboutsummaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/exception/DashboardControllerException.java
blob: f28874121ee4bca210be80222ce3a06aa831fdf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.onap.ccsdk.dashboard.exception;

/**
 * A little something to placate the Sonar code-analysis tool.
 */
public class DashboardControllerException extends Exception {

	private static final long serialVersionUID = -1373841666122351816L;

	public DashboardControllerException() {
		super();
	}

	public DashboardControllerException(String message) {
		super(message);
	}

	public DashboardControllerException(String message, Throwable cause) {
		super(message, cause);
	}

	public DashboardControllerException(Throwable cause) {
		super(cause);
	}

}