90e53ea69adb5ba274ac4cc8776f89008efd0cbb
[sdc.git] /
1 package org.openecomp.sdc.notification.exceptons;
2
3 /**
4  * @author avrahamg
5  * @since July 02, 2017
6  */
7 public class NotificationNotExistException extends Exception {
8     private String message;
9
10
11     public NotificationNotExistException(String Message){
12         this(Message, null);
13     }
14     public NotificationNotExistException(String message, Throwable cause) {
15         super(cause);
16         this.message = message;
17     }
18 }