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

com.netflix.msl.ProxyTransientException Maven / Gradle / Ivy

There is a newer version: 1.2226.0
Show newest version
/**
 * 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy