aboutsummaryrefslogtreecommitdiffstats
path: root/oom-app-common/src/main/java/org/onap/oom/dashboard/exception/DashboardControllerException.java
blob: ce2d169d1d4a920d4784611abc6ff17350188987 (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.oom.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);
	}

}