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