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

com.netflix.msl.ProxyMslException 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 a MSL exception has occurred.

* * @author Wesley Miaw */ public class ProxyMslException extends ProxyException { private static final long serialVersionUID = 2621303915896379638L; /** *

Creates a new {@code ProxyMslException} with the specified detail * message and cause.

* * @param message the detail message. * @param cause the cause. May be {@code null}. */ public ProxyMslException(final String message, final MslException cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy