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

com.sendsafely.exceptions.DropzoneRecipientFailedException Maven / Gradle / Ivy

Go to download

The SendSafely Client API allows programmatic access to SendSafely and provides a layer of abstraction from our REST API, which requires developers to perform several complex tasks in a correct manner.

There is a newer version: 3.1.11
Show newest version
package com.sendsafely.exceptions;

public class DropzoneRecipientFailedException extends RecipientFailedException {
	private static final long serialVersionUID = 1L;
	
	String error;
	
	public DropzoneRecipientFailedException(){
		super();
		error="unknown";
	}
	
	public DropzoneRecipientFailedException(String err){
		super(err);
		error =err;
	}
	
	public DropzoneRecipientFailedException(Exception e){
		super(e);
		error = e.getMessage();
	}
	
	public String getError(){
		return error; 
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy