com.netflix.msl.ProxyIoException Maven / Gradle / Ivy
/**
* Copyright (c) 2015 Netflix, Inc. All rights reserved.
*/
package com.netflix.msl;
/**
* Thrown when there is a communication failure with the external MSL
* service being proxed.
*
* @author Wesley Miaw
*/
public class ProxyIoException extends ProxyException {
private static final long serialVersionUID = 999987202864141531L;
/**
* Creates a new {@code ProxyIOException} with the specified detail
* message and cause.
*
* @param message the detail message.
* @param cause the cause. May be {@code null}.
*/
public ProxyIoException(final String message, final Throwable cause) {
super(message, cause);
}
}