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

com.cedarsoft.spring.rcp.selection.NoElementSelectedException Maven / Gradle / Ivy

package com.cedarsoft.spring.rcp.selection;

/**
 * This exception is thrown if nothing has been selected
 */
public class NoElementSelectedException extends RuntimeException {
  public NoElementSelectedException() {
  }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy