blob: 2dd9c9fa0b9a2145c82c2c9186c2749d624a4c3d [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.atlas.notification;
import org.apache.atlas.AtlasException;
import java.util.List;
/**
* Exception from notification.
*/
public class NotificationException extends AtlasException {
private List<String> failedMessages;
public NotificationException(Exception e) {
super(e);
}
public NotificationException(Exception e, List<String> failedMessages) {
super(e);
this.failedMessages = failedMessages;
}
public List<String> getFailedMessages() {
return failedMessages;
}
}