Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-notification-lib / openecomp-sdc-notification-api / src / main / java / org / openecomp / sdc / notification / exceptons / NotificationNotExistException.java
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 }