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

com.netflix.msl.ProxyException 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 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy