summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-api/src/main/java/org/openecomp/sdc/notification/exceptons/NotificationNotExistException.java
blob: 90e53ea69adb5ba274ac4cc8776f89008efd0cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.openecomp.sdc.notification.exceptons;

/**
 * @author avrahamg
 * @since July 02, 2017
 */
public class NotificationNotExistException extends Exception {
    private String message;


    public NotificationNotExistException(String Message){
        this(Message, null);
    }
    public NotificationNotExistException(String message, Throwable cause) {
        super(cause);
        this.message = message;
    }
}