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

org.directwebremoting.extend.MarshallException Maven / Gradle / Ivy

package org.directwebremoting.extend;

import org.directwebremoting.ConversionException;

/**
 * Something has gone wrong when we were doing some conversion.
 * @author Joe Walker [joe at getahead dot ltd dot uk]
 * @deprecated Use ConversionException instead
 */
@Deprecated
public class MarshallException extends ConversionException
{
    /**
     * Default ctor
     * @param paramType The type we were trying to marshall
     */
    public MarshallException(Class paramType)
    {
        super(paramType);
    }

    /**
     * Construct a ConversionException with an exception and a destination type
     * @param paramType The type we were trying to marshall
     * @param ex error stack trace
     */
    public MarshallException(Class paramType, Throwable ex)
    {
        super(paramType, ex);
    }

    /**
     * Construct a ConversionException with a description message and exception
     * @param paramType The type we were trying to marshall
     * @param message error description
     */
    public MarshallException(Class paramType, String message)
    {
        super(paramType, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy