
com.threerings.gwt.util.InputException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-utils Show documentation
Show all versions of gwt-utils Show documentation
Utilities for use in developing GWT applications.
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