Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / cds-sdc-listener / application / src / main / java / org / onap / ccsdk / apps / cdssdclistener / exceptions / CdsSdcListenerException.java
1 /*
2  * Copyright (C) 2019 Bell Canada. All rights reserved.
3  *
4  * NOTICE:  All the intellectual and technical concepts contained herein are
5  * proprietary to Bell Canada and are protected by trade secret or copyright law.
6  * Unauthorized copying of this file, via any medium is strictly prohibited.
7  */
8
9 package org.onap.ccsdk.apps.cdssdclistener.exceptions;
10
11 public class CdsSdcListenerException extends Exception {
12
13     /**
14      * @param message The message to dump
15      */
16     public CdsSdcListenerException(final String message) {
17         super(message);
18     }
19
20     /**
21      * @param message The message to dump
22      * @param cause The Throwable cause object
23      */
24     public CdsSdcListenerException(final String message, final Throwable cause) {
25         super(message, cause);
26     }
27 }