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

com.xerox.amazonws.fps.FPSError Maven / Gradle / Ivy

package com.xerox.amazonws.fps;

import com.xerox.amazonws.common.AWSError;

/**
 * @author J. Bernard
 * @author Elastic Grid, LLC.
 * @author [email protected]
 */
public class FPSError extends AWSError {
    private final boolean retriable;

    public FPSError(ErrorType type, String code, String message, boolean retriable) {
        super(type, code, message);
        this.retriable = retriable;
    }

    public boolean isRetriable() {
        return retriable;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy