com.netflix.msl.ProxyTransientException Maven / Gradle / Ivy
/**
* Copyright (c) 2015 Netflix, Inc. All rights reserved.
*/
package com.netflix.msl;
/**
* Thrown when there is a transient failure indicating the operation may
* succeed at a later time.
*
* @author Wesley Miaw
*/
public class ProxyTransientException extends ProxyException {
private static final long serialVersionUID = -99248671046579868L;
/**
* Creates a new {@code ProxyTransientException} with the specified detail
* message and cause.
*
* @param message the detail message.
* @param cause the cause. May be {@code null}.
*/
public ProxyTransientException(final String message, final Throwable cause) {
super(message, cause);
}
}