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

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

Go to download

DWR is easy Ajax for Java. It makes it simple to call Java code directly from Javascript. It gets rid of almost all the boilerplate code between the web browser and your Java code. This version 4.0.2 works with Jakarta Servlet 4.0.2.

The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy