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

com.messagebird.exceptions.UnauthorizedException Maven / Gradle / Ivy

Go to download

The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.

The newest version!
package com.messagebird.exceptions;

import com.messagebird.objects.ErrorReport;

import java.util.List;

/**
 * Exception send when you are not authorised to use this service
 *
 * Created by rvt on 1/5/15.
 */
public class UnauthorizedException extends MessageBirdException {
    public UnauthorizedException(List errors) {
        super(errors);
    }

    public UnauthorizedException(String s, List errors) {
        super(s, errors);
    }

    public UnauthorizedException(String s, Throwable throwable, List errors) {
        super(s, throwable, errors);
    }

    public UnauthorizedException(Throwable throwable, List errors) {
        super(throwable, errors);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy