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

com.citrix.sharefile.api.exceptions.LocalizedError Maven / Gradle / Ivy

package com.citrix.sharefile.api.exceptions;

public class LocalizedError
{
    public static String get(Exception e, String defaultValue)
    {
        if(e instanceof SFServerException || e instanceof SFConnectionException)
        {
            return e.getLocalizedMessage();
        }

        return defaultValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy