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

com.dottydingo.hyperion.client.exception.ClientMarshallingException Maven / Gradle / Ivy

The newest version!
package com.dottydingo.hyperion.client.exception;

/**
 * A client side error caused by a marshalling problem
 */
public class ClientMarshallingException extends ClientException
{
    /**
     * Create a new exception using the supplied parameters
     * @param message The error message
     */
    public ClientMarshallingException(String message, Throwable throwable)
    {
        super(500, message, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy