BindException.java :  » GWT » gwt-mosaic » gwt » mosaic » client » beans » Java Open Source

Java Open Source » GWT » gwt mosaic 
gwt mosaic » gwt » mosaic » client » beans » BindException.java
package gwt.mosaic.client.beans;

/**
 * Thrown when an error is encountered during binding.
 */
@SuppressWarnings("serial")
public class BindException extends RuntimeException {

  public BindException() {
    super();
  }

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

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

  public BindException(String message, Throwable cause) {
    super(message, cause);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.