com.netflix.msl.ProxyException Maven / Gradle / Ivy
/**
* Copyright (c) 2015 Netflix, Inc. All rights reserved.
*/
package com.netflix.msl;
/**
* Thrown by the proxy when an exception has occurred. This class is the
* general class of exceptions produced by failed proxy operations.
*
* @author Wesley Miaw
*/
public class ProxyException extends Exception {
private static final long serialVersionUID = -2504349809538822945L;
/**
* Creates a new {@code ProxyException} with the specified detail
* message and cause.
*
* @param message the detail message.
* @param cause the cause. May be {@code null}.
*/
public ProxyException(final String message, final Throwable cause) {
super(message, cause);
}
}