aboutsummaryrefslogtreecommitdiffstats
path: root/ms/cds-sdc-listener/application/src/main/java/org/onap/ccsdk/apps/cdssdclistener/exceptions/CdsSdcListenerException.java
blob: 3f83b6ac295e2302c71c64085fba7c43307b83db (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
27
/*
 * Copyright (C) 2019 Bell Canada. All rights reserved.
 *
 * NOTICE:  All the intellectual and technical concepts contained herein are
 * proprietary to Bell Canada and are protected by trade secret or copyright law.
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 */

package org.onap.ccsdk.apps.cdssdclistener.exceptions;

public class CdsSdcListenerException extends Exception {

    /**
     * @param message The message to dump
     */
    public CdsSdcListenerException(final String message) {
        super(message);
    }

    /**
     * @param message The message to dump
     * @param cause The Throwable cause object
     */
    public CdsSdcListenerException(final String message, final Throwable cause) {
        super(message, cause);
    }
}