All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.esbtools.lightbluenotificationhook.NotificationInsertErrorsException Maven / Gradle / Ivy

There is a newer version: 0.1.9
Show newest version
package org.esbtools.lightbluenotificationhook;

import com.redhat.lightblue.DataError;
import com.redhat.lightblue.util.Error;

import java.util.Collection;
import java.util.List;

public class NotificationInsertErrorsException extends RuntimeException {
    public NotificationInsertErrorsException(NotificationEntity entity, Collection errors,
            Collection dataErrors) {
        super("Errors inserting new notification: " + entity + "\n" +
                "Data errors: " + dataErrors + "\n" +
                "Errors: " + errors);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy