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

com.threerings.gwt.util.InputException Maven / Gradle / Ivy

The newest version!
//
// $Id$

package com.threerings.gwt.util;

/**
 * Thrown during parsing of user input. Allows widgets or parsing methods to cleanly bail out of a
 * service call etc if the user input is incorrect.
 */
public class InputException extends RuntimeException
{
    public InputException ()
    {
    }

    public InputException (String message, Throwable cause)
    {
        super(message, cause);
    }

    public InputException (String message)
    {
        super(message);
    }

    public InputException (Throwable cause)
    {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy