com.messagebird.exceptions.NotFoundException Maven / Gradle / Ivy
package com.messagebird.exceptions;
import com.messagebird.objects.ErrorReport;
import java.util.List;
/**
* Created by rvt on 1/9/15.
*/
public class NotFoundException extends MessageBirdException {
public NotFoundException(List errors) {
super(errors);
}
public NotFoundException(String s, List errors) {
super(s, errors);
}
public NotFoundException(String s, Throwable throwable, List errors) {
super(s, throwable, errors);
}
public NotFoundException(Throwable throwable, List errors) {
super(throwable, errors);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy