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

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

package com.sendsafely.exceptions;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy