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

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

package com.sendsafely.exceptions;

public class GetDownloadUrlsException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	String error;
	
	public GetDownloadUrlsException(Exception e) {
		super(e);
		error = e.getMessage();
	}

	public GetDownloadUrlsException(String err){
		super(err);
		error = err;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy